Skip to main content
GET
/
scheduled_events
/
{uuid}
/
invitees
List event invitees
curl --request GET \
  --url https://api.calendly.com/scheduled_events/{uuid}/invitees \
  --header 'Authorization: Bearer <token>'
{
  "collection": [
    {
      "uri": "<string>",
      "email": "jsmith@example.com",
      "first_name": "<string>",
      "last_name": "<string>",
      "name": "<string>",
      "status": "active",
      "timezone": "<string>",
      "event": "<string>",
      "created_at": "2023-11-07T05:31:56Z",
      "updated_at": "2023-11-07T05:31:56Z",
      "tracking": {
        "utm_campaign": "<string>",
        "utm_source": "<string>",
        "utm_medium": "<string>",
        "utm_content": "<string>",
        "utm_term": "<string>",
        "salesforce_uuid": "<string>"
      },
      "text_reminder_number": "<string>",
      "rescheduled": true,
      "old_invitee": "<string>",
      "new_invitee": "<string>",
      "cancel_url": "<string>",
      "reschedule_url": "<string>",
      "payment": {
        "external_id": "<string>",
        "provider": "<string>",
        "amount": 123,
        "currency": "<string>",
        "terms": "<string>",
        "successful": true
      },
      "no_show": {
        "uri": "<string>",
        "created_at": "2023-11-07T05:31:56Z"
      },
      "reconfirmation": {},
      "scheduling_method": "instant_book",
      "invitee_scheduled_by": "<string>"
    }
  ],
  "pagination": {
    "count": 123,
    "next_page": "<string>",
    "previous_page": "<string>",
    "next_page_token": "<string>",
    "previous_page_token": "<string>"
  }
}

Documentation Index

Fetch the complete documentation index at: https://calendly-preview.mintlify.app/llms.txt

Use this file to discover all available pages before exploring further.

Authorizations

Authorization
string
header
required

OAuth 2.1 with PKCE. Request the minimum scopes your integration needs. See the Scopes catalog for the full list.

Path Parameters

uuid
string
required

Unique identifier for the resource.

Query Parameters

email
string<email>
status
enum<string>
Available options:
active,
canceled
count
integer
default:20

Number of results to return per page (1-100).

Required range: 1 <= x <= 100
page_token
string

Opaque cursor for retrieving the next page of results.

sort
string

Field and direction to sort results by.

Response

OK

collection
object[]
pagination
object