v1

latestOpenAPI 3.0.12026-07-2691137122.3 KB
CalComService

Get Appointment

get/api/v1/calcom/appointments/{appointment_id}

Path parameters

appointment_idstring required

Cal.com booking UID

Query parameters

org_idstring

Fallback organization ID used only when not present in JWT claims

Response

Appointment retrieved

successboolean
messagestring

Example response

{
  "success": true,
  "message": "Appointment retrieved",
  "data": {
    "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>"
  }
}