Skip to main content
Retrieve details for a specific webhook by ID.

Endpoint

GET /v1/accounts/:accountId/webhooks/:id

Authentication

Bearer token required.

Path Parameters

id
string
required
The webhook’s unique ID.

Response

webhook
WebhookRegistrationPublic
The webhook object (without the secret field). See WebhookRegistrationPublic.

Example

curl "https://api.collab-kit.com/v1/accounts/${ACCOUNT_ID}/webhooks/wh_abc123" \
  -H "Authorization: Bearer ${TOKEN}"
Response
{
  "type": "response",
  "success": true,
  "description": "Webhook retrieved",
  "data": {
    "webhook": {
      "id": "wh_abc123",
      "organization_id": "a1b2c3d4-...",
      "url": "https://api.example.com/collab-webhook",
      "events": ["participant.joined", "participant.left"],
      "room_id": null,
      "enabled": true,
      "created_at": "2026-05-29T10:00:00.000Z",
      "updated_at": "2026-05-29T10:00:00.000Z"
    }
  },
  "error": null
}