GET
/
webhooks
/
subscriptions
List Webhook Subscriptions
curl --request GET \
  --url https://api.chat-dash.com/v1/partner/webhooks/subscriptions \
  --header 'x-partner-api-key: <x-partner-api-key>'
[
  {
    "_id": "<string>",
    "organizationId": "<string>",
    "agentId": "<string>",
    "webhookUrl": "<string>",
    "events": [
      "call.started"
    ],
    "createdAt": "2023-11-07T05:31:56Z",
    "updatedAt": "2023-11-07T05:31:56Z"
  }
]

Headers

x-partner-api-key
string
required

Partner API key for authentication

Query Parameters

organizationId
string
required

Organization ID to filter subscriptions

Response

200 - application/json

List of webhook subscriptions

The response is of type object[].