v1

latestOpenAPI 3.0.02026-07-17121287546.7 KB
Deprecated: Platform OAuth Clients

Get all OAuth clients

<Warning>These endpoints are deprecated and will be removed in the future.</Warning>

get/v2/oauth-clients

Headers

Authorizationstring required

value must be Bearer <token> where <token> is api key prefixed with cal_

Response

status'success' | 'error' required

Example response

{
  "status": "success",
  "data": [
    {
      "id": "clsx38nbl0001vkhlwin9fmt0",
      "name": "MyClient",
      "secret": "secretValue",
      "permissions": [
        "BOOKING_READ",
        "BOOKING_WRITE"
      ],
      "redirectUris": [
        "https://example.com/callback"
      ],
      "organizationId": 1,
      "createdAt": "2024-03-23T08:33:21.851Z",
      "areEmailsEnabled": true,
      "areDefaultEventTypesEnabled": true,
      "areCalendarEventsEnabled": true,
      "bookingRedirectUri": "https://example.com/booking-redirect",
      "bookingCancelRedirectUri": "https://example.com/booking-cancel",
      "bookingRescheduleRedirectUri": "https://example.com/booking-reschedule"
    }
  ]
}