Skip to content
For LLMsView as Markdown·

Calendly

Manage scheduling, events, invitees, and availability via Calendly.

DetailValue
CategoryScheduling
Base URLhttps://api.calendly.com
AuthenticationBearer Token
Endpoints6
Connector keycalendly

Using Calendly in a workflow

  1. Go to Connections and click New Connection.
  2. Pick Calendly from the marketplace.
  3. Enter your credentials (see Authentication above for what's expected).
  4. In a workflow, drop an API Call node and select this connection.
  5. Pick the operation you need from the Operation dropdown — the full list is below.

Available endpoints

EndpointSummary
GET /users/meGet current user
GET /event_typesList event types
GET /scheduled_eventsList scheduled events
GET /scheduled_events/{eventUuid}Get a scheduled event
GET /scheduled_events/{eventUuid}/inviteesList event invitees
POST /scheduled_events/{eventUuid}/cancellationCancel an event

Each endpoint is documented in full below. Use the outline on the right to jump to one.

GET /users/me

Get current user

DetailValue
Operation IDscheduling.getMe
MethodGET
Path/users/me

Parameters

No parameters.

Using this endpoint in a workflow

  1. Add an API Call node to your workflow.
  2. Pick your Calendly connection from the Connection dropdown.
  3. In the Operation dropdown, select scheduling.getMe.
  4. Fill in the parameter fields that appear. Use {{...}} to reference upstream values.

What it returns

The API Call node writes the response to the workflow context:

{
  status: 200,
  success: true,
  data: { ...response body from the API... },
  latencyMs: 142
}

Reference response fields downstream as {{nodeId.data.path}}. The exact response shape is documented on the upstream Calendly API reference.

GET /event_types

List event types

DetailValue
Operation IDscheduling.listEventTypes
MethodGET
Path/event_types

Parameters

NameLocationTypeRequired
userquerystringYes

Using this endpoint in a workflow

  1. Add an API Call node to your workflow.
  2. Pick your Calendly connection from the Connection dropdown.
  3. In the Operation dropdown, select scheduling.listEventTypes.
  4. Fill in the parameter fields that appear. Use {{...}} to reference upstream values.

Required fields are marked — fill them or the call will fail at runtime.

What it returns

The API Call node writes the response to the workflow context:

{
  status: 200,
  success: true,
  data: { ...response body from the API... },
  latencyMs: 142
}

Reference response fields downstream as {{nodeId.data.path}}. The exact response shape is documented on the upstream Calendly API reference.

GET /scheduled_events

List scheduled events

DetailValue
Operation IDscheduling.listScheduledEvents
MethodGET
Path/scheduled_events

Parameters

NameLocationTypeRequired
userquerystringNo

Using this endpoint in a workflow

  1. Add an API Call node to your workflow.
  2. Pick your Calendly connection from the Connection dropdown.
  3. In the Operation dropdown, select scheduling.listScheduledEvents.
  4. Fill in the parameter fields that appear. Use {{...}} to reference upstream values.

What it returns

The API Call node writes the response to the workflow context:

{
  status: 200,
  success: true,
  data: { ...response body from the API... },
  latencyMs: 142
}

Reference response fields downstream as {{nodeId.data.path}}. The exact response shape is documented on the upstream Calendly API reference.

GET /scheduled_events/{eventUuid}

Get a scheduled event

DetailValue
Operation IDscheduling.getEvent
MethodGET
Path/scheduled_events/{eventUuid}

Parameters

NameLocationTypeRequired
eventUuidpathstringYes

Using this endpoint in a workflow

  1. Add an API Call node to your workflow.
  2. Pick your Calendly connection from the Connection dropdown.
  3. In the Operation dropdown, select scheduling.getEvent.
  4. Fill in the parameter fields that appear. Use {{...}} to reference upstream values.

Required fields are marked — fill them or the call will fail at runtime.

What it returns

The API Call node writes the response to the workflow context:

{
  status: 200,
  success: true,
  data: { ...response body from the API... },
  latencyMs: 142
}

Reference response fields downstream as {{nodeId.data.path}}. The exact response shape is documented on the upstream Calendly API reference.

GET /scheduled_events/{eventUuid}/invitees

List event invitees

DetailValue
Operation IDscheduling.listInvitees
MethodGET
Path/scheduled_events/{eventUuid}/invitees

Parameters

NameLocationTypeRequired
eventUuidpathstringYes

Using this endpoint in a workflow

  1. Add an API Call node to your workflow.
  2. Pick your Calendly connection from the Connection dropdown.
  3. In the Operation dropdown, select scheduling.listInvitees.
  4. Fill in the parameter fields that appear. Use {{...}} to reference upstream values.

Required fields are marked — fill them or the call will fail at runtime.

What it returns

The API Call node writes the response to the workflow context:

{
  status: 200,
  success: true,
  data: { ...response body from the API... },
  latencyMs: 142
}

Reference response fields downstream as {{nodeId.data.path}}. The exact response shape is documented on the upstream Calendly API reference.

POST /scheduled_events/{eventUuid}/cancellation

Cancel an event

DetailValue
Operation IDscheduling.cancelEvent
MethodPOST
Path/scheduled_events/{eventUuid}/cancellation

Parameters

NameLocationTypeRequired
eventUuidpathstringYes

Using this endpoint in a workflow

  1. Add an API Call node to your workflow.
  2. Pick your Calendly connection from the Connection dropdown.
  3. In the Operation dropdown, select scheduling.cancelEvent.
  4. Fill in the parameter fields that appear. Use {{...}} to reference upstream values.

Required fields are marked — fill them or the call will fail at runtime.

What it returns

The API Call node writes the response to the workflow context:

{
  status: 200,
  success: true,
  data: { ...response body from the API... },
  latencyMs: 142
}

Reference response fields downstream as {{nodeId.data.path}}. The exact response shape is documented on the upstream Calendly API reference.