Use calendly with AI Agents

A business communication platform used for teams to schedule, prepare and follow up on external meetings.
πŸ”— Connect and Use calendly
1. πŸ”‘ Connect your calendly account
2. βœ… Select an action
3. πŸš€ Go live with the agent
What do you want to do?

API actions for calendly for AI assitants/agents

Language
JS
PYTHON

Activity Log

LIST ACTIVITY LOG ENTRIES

<!-- theme: info --> > This endpoint requires an <strong>Enterprise</strong> subscription. Returns a list of activity log entries
from composio_langchain import ComposioToolSet, Action tool_set = ComposioToolSet() tools = tool_set.get_tools(actions=[Action.CALENDLY_LIST_ACTIVITY_LOG_ENTRIES])

Data Compliance

DELETE SCHEDULED EVENT DATA

Enterprise subscription holders can use this endpoint to request deletion of scheduled events data within a past 24-month range; process may take up to 7 days.
from composio_langchain import ComposioToolSet, Action tool_set = ComposioToolSet() tools = tool_set.get_tools(actions=[Action.CALENDLY_DELETE_SCHEDULED_EVENT_DATA])

DELETE INVITEE DATA

Use this endpoint with an Enterprise subscription to request the removal of invitee data from past organization events. Deletion may take up to a week.
from composio_langchain import ComposioToolSet, Action tool_set = ComposioToolSet() tools = tool_set.get_tools(actions=[Action.CALENDLY_DELETE_INVITEE_DATA])

Event Types

LIST EVENT TYPE AVAILABLE TIMES

Returns a list of available times for an event type within a specified date range. Date range can be no greater than 1 week (7 days). **NOTE:** * This endpoint does not support traditional key
from composio_langchain import ComposioToolSet, Action tool_set = ComposioToolSet() tools = tool_set.get_tools(actions=[Action.CALENDLY_LIST_EVENT_TYPE_AVAILABLE_TIMES])

LIST EVENT TYPE HOSTS

Fetch list of event type hosts
from composio_langchain import ComposioToolSet, Action tool_set = ComposioToolSet() tools = tool_set.get_tools(actions=[Action.CALENDLY_LIST_EVENT_TYPE_HOSTS])

LIST USER S EVENT TYPES

This endpoint retrieves all Event Types linked to a particular User within an organization, requiring either `organization` or `user` as mandatory query parameters.
from composio_langchain import ComposioToolSet, Action tool_set = ComposioToolSet() tools = tool_set.get_tools(actions=[Action.CALENDLY_LIST_USER_S_EVENT_TYPES])

GET EVENT TYPE

Returns information about a specified Event Type.
from composio_langchain import ComposioToolSet, Action tool_set = ComposioToolSet() tools = tool_set.get_tools(actions=[Action.CALENDLY_GET_EVENT_TYPE])

CREATE ONE OFF EVENT TYPE

Creates One-Off Event Type
from composio_langchain import ComposioToolSet, Action tool_set = ComposioToolSet() tools = tool_set.get_tools(actions=[Action.CALENDLY_CREATE_ONE_OFF_EVENT_TYPE])

Groups

LIST GROUP RELATIONSHIPS

Returns a list of group relationships - a given owner can have one membership record, but multiple admin records
from composio_langchain import ComposioToolSet, Action tool_set = ComposioToolSet() tools = tool_set.get_tools(actions=[Action.CALENDLY_LIST_GROUP_RELATIONSHIPS])

GET GROUP RELATIONSHIP

Returns a group relationship by uuid
from composio_langchain import ComposioToolSet, Action tool_set = ComposioToolSet() tools = tool_set.get_tools(actions=[Action.CALENDLY_GET_GROUP_RELATIONSHIP])

LIST GROUPS

Returns a list of groups.
from composio_langchain import ComposioToolSet, Action tool_set = ComposioToolSet() tools = tool_set.get_tools(actions=[Action.CALENDLY_LIST_GROUPS])

GET GROUP

Returns information about a specified Group.
from composio_langchain import ComposioToolSet, Action tool_set = ComposioToolSet() tools = tool_set.get_tools(actions=[Action.CALENDLY_GET_GROUP])

Scheduled Events

CREATE INVITEE NO SHOW

Marks an Invitee as a No Show.
from composio_langchain import ComposioToolSet, Action tool_set = ComposioToolSet() tools = tool_set.get_tools(actions=[Action.CALENDLY_CREATE_INVITEE_NO_SHOW])

DELETE INVITEE NO SHOW

Undoes marking an Invitee as a No Show.
from composio_langchain import ComposioToolSet, Action tool_set = ComposioToolSet() tools = tool_set.get_tools(actions=[Action.CALENDLY_DELETE_INVITEE_NO_SHOW])

GET INVITEE NO SHOW

Returns information about a specified Invitee No Show.
from composio_langchain import ComposioToolSet, Action tool_set = ComposioToolSet() tools = tool_set.get_tools(actions=[Action.CALENDLY_GET_INVITEE_NO_SHOW])

LIST EVENTS

The API returns event lists, filtered by 'organization', 'user', or 'group'. Admin privileges are needed for organization/group filters. Admins can also view events of a specific user or group
from composio_langchain import ComposioToolSet, Action tool_set = ComposioToolSet() tools = tool_set.get_tools(actions=[Action.CALENDLY_LIST_EVENTS])

GET EVENT INVITEE

Returns information about a specified Invitee (person invited to an event).
from composio_langchain import ComposioToolSet, Action tool_set = ComposioToolSet() tools = tool_set.get_tools(actions=[Action.CALENDLY_GET_EVENT_INVITEE])

GET EVENT

Returns information about a specified Event.
from composio_langchain import ComposioToolSet, Action tool_set = ComposioToolSet() tools = tool_set.get_tools(actions=[Action.CALENDLY_GET_EVENT])

CANCEL EVENT

Cancels specified event.
from composio_langchain import ComposioToolSet, Action tool_set = ComposioToolSet() tools = tool_set.get_tools(actions=[Action.CALENDLY_CANCEL_EVENT])

LIST EVENT INVITEES

Returns a list of Invitees for an event.
from composio_langchain import ComposioToolSet, Action tool_set = ComposioToolSet() tools = tool_set.get_tools(actions=[Action.CALENDLY_LIST_EVENT_INVITEES])

Organizations

LIST ORGANIZATION MEMBERSHIPS

The endpoint lists organization memberships for users and all users in an organization, and retrieves the organization URI, using `user` and `organization` options.
from composio_langchain import ComposioToolSet, Action tool_set = ComposioToolSet() tools = tool_set.get_tools(actions=[Action.CALENDLY_LIST_ORGANIZATION_MEMBERSHIPS])

REMOVE USER FROM ORGANIZATION

Removes a user from an organization. Notes: * To remove users, the caller must have admin rights for the organization * An organization owner can’t be removed
from composio_langchain import ComposioToolSet, Action tool_set = ComposioToolSet() tools = tool_set.get_tools(actions=[Action.CALENDLY_REMOVE_USER_FROM_ORGANIZATION])

GET ORGANIZATION MEMBERSHIP

Returns information about a user's Organization Membership
from composio_langchain import ComposioToolSet, Action tool_set = ComposioToolSet() tools = tool_set.get_tools(actions=[Action.CALENDLY_GET_ORGANIZATION_MEMBERSHIP])

REVOKE USER S ORGANIZATION INVITATION

Use this to revoke an Organization Invitation to an organization. Once revoked, the invitation link that was sent to the invitee is no longer valid.
from composio_langchain import ComposioToolSet, Action tool_set = ComposioToolSet() tools = tool_set.get_tools(actions=[Action.CALENDLY_REVOKE_USER_S_ORGANIZATION_INVITATION])

GET ORGANIZATION INVITATION

Returns an Organization Invitation that was sent to the organization's members.
from composio_langchain import ComposioToolSet, Action tool_set = ComposioToolSet() tools = tool_set.get_tools(actions=[Action.CALENDLY_GET_ORGANIZATION_INVITATION])

LIST ORGANIZATION INVITATIONS

Returns a list of Organization Invitations that were sent to the organization's members.
from composio_langchain import ComposioToolSet, Action tool_set = ComposioToolSet() tools = tool_set.get_tools(actions=[Action.CALENDLY_LIST_ORGANIZATION_INVITATIONS])

INVITE USER TO ORGANIZATION

Invites a user to an organization.
from composio_langchain import ComposioToolSet, Action tool_set = ComposioToolSet() tools = tool_set.get_tools(actions=[Action.CALENDLY_INVITE_USER_TO_ORGANIZATION])

Outgoing Communications

LIST OUTGOING COMMUNICATIONS

<!-- theme: info --> > This endpoint requires an <strong>Enterprise</strong> subscription. Returns a list of outgoing SMS communications.
from composio_langchain import ComposioToolSet, Action tool_set = ComposioToolSet() tools = tool_set.get_tools(actions=[Action.CALENDLY_LIST_OUTGOING_COMMUNICATIONS])

Routing Forms

LIST ROUTING FORMS

Get a list of Routing Forms for a specified Organization.
from composio_langchain import ComposioToolSet, Action tool_set = ComposioToolSet() tools = tool_set.get_tools(actions=[Action.CALENDLY_LIST_ROUTING_FORMS])

GET ROUTING FORM

Get a specified Routing Form.
from composio_langchain import ComposioToolSet, Action tool_set = ComposioToolSet() tools = tool_set.get_tools(actions=[Action.CALENDLY_GET_ROUTING_FORM])

Shares

CREATE SHARE

Calendly's "Customize Once and Share" feature lets you tailor one-on-one events for each invitee without creating a new event type. Unspecified parameters default to the original event setting
from composio_langchain import ComposioToolSet, Action tool_set = ComposioToolSet() tools = tool_set.get_tools(actions=[Action.CALENDLY_CREATE_SHARE])

Availability

LIST USER AVAILABILITY SCHEDULES

Returns the availability schedules of the given user.
from composio_langchain import ComposioToolSet, Action tool_set = ComposioToolSet() tools = tool_set.get_tools(actions=[Action.CALENDLY_LIST_USER_AVAILABILITY_SCHEDULES])

GET USER AVAILABILITY SCHEDULE

This will return the availability schedule of the given UUID.
from composio_langchain import ComposioToolSet, Action tool_set = ComposioToolSet() tools = tool_set.get_tools(actions=[Action.CALENDLY_GET_USER_AVAILABILITY_SCHEDULE])

LIST USER BUSY TIMES

Fetches a week-max list of user events, both internal and external (if conflict check set), in ascending order without keyset pagination support.
from composio_langchain import ComposioToolSet, Action tool_set = ComposioToolSet() tools = tool_set.get_tools(actions=[Action.CALENDLY_LIST_USER_BUSY_TIMES])

Users

GET CURRENT USER

Returns basic information about your user account.
from composio_langchain import ComposioToolSet, Action tool_set = ComposioToolSet() tools = tool_set.get_tools(actions=[Action.CALENDLY_GET_CURRENT_USER])

GET USER

Returns information about a specified User.
from composio_langchain import ComposioToolSet, Action tool_set = ComposioToolSet() tools = tool_set.get_tools(actions=[Action.CALENDLY_GET_USER])

Webhooks

LIST WEBHOOK SUBSCRIPTIONS

Get a list of Webhook Subscriptions for a specified Organization or User.
from composio_langchain import ComposioToolSet, Action tool_set = ComposioToolSet() tools = tool_set.get_tools(actions=[Action.CALENDLY_LIST_WEBHOOK_SUBSCRIPTIONS])

CREATE WEBHOOK SUBSCRIPTION

Webhook subscriptions can be created for organizations, users, or groups. Organizational ones cover all events; user/group ones are entity-specific. Some events support several scopes, so crea
from composio_langchain import ComposioToolSet, Action tool_set = ComposioToolSet() tools = tool_set.get_tools(actions=[Action.CALENDLY_CREATE_WEBHOOK_SUBSCRIPTION])

DELETE WEBHOOK SUBSCRIPTION

Delete a Webhook Subscription.
from composio_langchain import ComposioToolSet, Action tool_set = ComposioToolSet() tools = tool_set.get_tools(actions=[Action.CALENDLY_DELETE_WEBHOOK_SUBSCRIPTION])

GET WEBHOOK SUBSCRIPTION

Get a specified Webhook Subscription.
from composio_langchain import ComposioToolSet, Action tool_set = ComposioToolSet() tools = tool_set.get_tools(actions=[Action.CALENDLY_GET_WEBHOOK_SUBSCRIPTION])

Frequently asked questions

What is Composio.dev?

Composio.dev is a platform for building AI applications, designed to make the process of developing AI solutions super easy and fun! It provides a comprehensive set of tools and libraries that simplify the process of developing AI solutions, allowing you to focus on the creative aspects of your project without getting bogged down by the technical details.

How does Composio.dev support calendly?

Composio.dev seamlessly integrates with calendly, allowing you to leverage its capabilities within the Composio.dev platform. You can utilize calendly to call functions across various platforms, including Google, GitHub, and others, making it a breeze to incorporate different services into your AI applications. Additionally, it supports user authentication via OAuth2 and can work in conjunction with other popular frameworks like LangChain and CrewAI, giving you the flexibility to build truly innovative AI solutions.

What models can I use with calendly?

With calendly, you have access to a wide range of state-of-the-art language models, including GPT-4o (OpenAI), GPT-3.5 (OpenAI), GPT-4 (OpenAI), Claude (Anthropic), PaLM (Google), LLaMA and LLaMA 2 (Meta), Gemini, and many others. This flexibility allows you to choose the model that best suits your specific use case, whether you're building a chatbot, a content creation tool, or any other AI-powered application. You can experiment with different models and find the one that delivers the best performance for your project.

How can I integrate calendly into my project?

Composio.dev provides a seamless integration for calendly, making it super easy to incorporate this powerful framework into your projects. You can leverage the Composio.dev API to call functions from calendly, allowing you to tap into its capabilities with just a few lines of code. The SDK is available in Python, JavaScript, and TypeScript, so you can work with your preferred programming language and integrate calendly into your projects seamlessly.

What is the pricing for calendly?

calendly is completely free to use, with a generous free tier that allows up to 1000 requests per month. This makes it accessible for developers and organizations of all sizes to explore and experiment with this powerful tool without any upfront costs. Whether you're a student working on a personal project or a startup building the next big thing, you can get started with calendly without worrying about breaking the bank.

What kind of authentication is supported for calendly?

calendly supports OAuth2 authentication, ensuring secure and authorized access to its functionalities. You can leverage the Composio.dev API to handle authentication and call functions from calendly seamlessly. The SDK is available in Python, JavaScript, and TypeScript for your convenience, making it easy to integrate authentication into your projects and keep your users' data safe and secure.

Can I add calendly to my project?

Absolutely! You can easily incorporate calendly into your project by utilizing the Composio.dev API. This API allows you to call functions from calendly, enabling you to leverage its capabilities within your application. The SDK is available in Python, JavaScript, and TypeScript to facilitate integration, so you can work with the language you're most comfortable with and add calendly to your project with ease.

What is the accuracy of calendly?

calendly is designed to provide highly accurate and reliable results, ensuring that your AI applications perform at their best. The integration with Composio.dev ensures precise function calls, enabling you to build robust and powerful AI applications with confidence. calendly's comprehensive framework and the ability to leverage state-of-the-art models ensure reliable and accurate outcomes for your AI development needs, whether you're working on a chatbot, a content creation tool, or any other AI-powered project.

What are some common use cases for calendly?

calendly can be used for a wide range of AI applications, making it a versatile tool for developers and creators alike. Some common use cases include natural language processing, text generation, question answering, sentiment analysis, and more. It's particularly useful for building chatbots, virtual assistants, content creation tools, and other AI-powered applications that can help you automate tasks, engage with users, and create compelling content. Whether you're working on a personal project or building a product for your startup, calendly can help you bring your ideas to life.

How does calendly handle data privacy and security?

Data privacy and security are crucial considerations when working with AI systems, and calendly takes these issues seriously. It follows industry best practices and adheres to strict data protection regulations, ensuring that your data is kept safe and secure. calendly provides robust security measures, such as encryption and access controls, to ensure the confidentiality and integrity of your data. You can rest assured that your sensitive information is protected when using calendly for your AI development needs.
+ Integrate seamlessly with your agentic frameworks
Composio Works with All Shapes and SizesComposio Works with All Shapes and SizesComposio Works with All Shapes and SizesComposio Works with All Shapes and SizesComposio Works with All Shapes and Sizes
Building for AI across continentsπŸ§ͺ