iCalendlyDeveloper Docs
Me

GETGet My Profile

Retrieves the profile of the authenticated user.

GET/v2/me
GET/v2/me

Header Parameters

AuthorizationRequiredstring

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

curl -X GET "https://example.com/v2/me" \
  -H "Authorization: <string>"

{
  "status": "success",
  "data": {
    "id": 0,
    "username": "string",
    "email": "string",
    "name": "string",
    "avatarUrl": "string",
    "bio": "string",
    "timeFormat": 0,
    "defaultScheduleId": 0,
    "weekStart": "string",
    "timeZone": "string",
    "organizationId": 0,
    "organization": {
      "isPlatform": true,
      "id": 0
    }
  }
}