Skip to main content
GET
/
organization_memberships
List organization memberships
curl --request GET \
  --url https://api.calendly.com/organization_memberships \
  --header 'Authorization: Bearer <token>'
{
  "collection": [
    {
      "uri": "<string>",
      "role": "user",
      "user": {
        "uri": "<string>",
        "name": "<string>",
        "slug": "<string>",
        "email": "jsmith@example.com",
        "scheduling_url": "<string>",
        "timezone": "America/New_York",
        "avatar_url": "<string>",
        "created_at": "2023-11-07T05:31:56Z",
        "updated_at": "2023-11-07T05:31:56Z",
        "current_organization": "<string>",
        "locale": "en",
        "resource_type": "User"
      },
      "organization": "<string>",
      "updated_at": "2023-11-07T05:31:56Z",
      "created_at": "2023-11-07T05:31:56Z"
    }
  ],
  "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.

Query Parameters

organization
string<uri>
required

URI of the organization.

user
string<uri>

URI of the user.

email
string<email>
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.

Response

OK

collection
object[]
pagination
object