v1

latestOpenAPI 3.0.12026-07-2691137122.3 KB
CalComService

Assign Cal.com Account to Agent

put/api/v1/calcom/agents/{agent_id}/account

Path parameters

agent_idstring required

Agent UUID

Query parameters

org_idstring

Fallback organization ID used only when not present in JWT claims

Request body

calcom_account_idstring nullable

Org-level Cal.com account UUID, or null to unlink

Example request

{
  "calcom_account_id": "<string>"
}

Response

Agent Cal.com account updated

successboolean
messagestring

Example response

{
  "success": true,
  "message": "Agent Cal.com account updated",
  "data": {
    "agent_id": "<string>",
    "agent_name": "<string>",
    "calcom_account_id": "<string>"
  }
}