iCalendlyDeveloper Docs
Calendars

POSTSave Apple calendar credentials

POST/v2/calendars/{calendar}/credentials

Request Body

application/jsonRequired
usernameRequiredstring
passwordRequiredstring

Path Parameters

calendarRequiredstring
Value in: "apple"

Header Parameters

AuthorizationRequiredstring

value must be Bearer <token> where <token> is api key prefixed with cal_ or managed user access token

curl -X POST "https://example.com/v2/calendars/apple/credentials" \
  -H "Authorization: <string>" \
  -H "Content-Type: application/json" \
  -d '{
    "username": "string",
    "password": "string"
  }'