Get Appointment
Cal.com Integration API
Get Appointment
Fetches a single booking by its Cal.com booking UID from the organization’s primary Cal.com account.
GET
Get Appointment
Authorizations
Your JWT access token. Pass it as a Bearer token in the
Authorization header. Example: Authorization: Bearer <token>.Path Parameters
The Cal.com booking UID for the appointment you want to fetch.
Query Parameters
Optional fallback organization ID. It is used only when the JWT claims do not already include the org context.
Response
Whether the request succeeded.
Human-readable status message.
Returned appointment data.
Authorizations
Bearer authentication header of the form Bearer <token>, where <token> is your auth token.
Path Parameters
Cal.com booking UID
Query Parameters
Fallback organization ID used only when not present in JWT claims
Response
Appointment retrieved
Example:
{
"appointment": {
"id": "<string>",
"organization_id": "<string>",
"ghl_appointment_id": "<string>",
"contact_id": "<string>",
"agent_id": "<string>",
"agent_name": "<string>",
"contact_name": "<string>",
"contact_email": "<string>",
"contact_phone": "<string>",
"appointment_time": "<string>",
"end_time": "<string>",
"status": "<string>"
},
"org_id": "<string>",
"agent_id": "<string>"
}
