Debriefer

List all webhook endpoints

GET
/api/v1/webhooks

Query Parameters

limit?integer
Default20
Range1 <= value <= 100
cursor?string

Response Body

application/json

curl -X GET "https://loading/api/v1/webhooks"
{
  "object": "list",
  "data": [
    {
      "id": "string",
      "organization_id": "string",
      "test_mode": true,
      "url": "string",
      "description": "string",
      "events": [
        "interview_run.created"
      ],
      "status": "active",
      "secret": "string",
      "metadata": {
        "property1": null,
        "property2": null
      },
      "created_at": "string",
      "updated_at": "string",
      "object": "webhook"
    }
  ],
  "has_more": true,
  "next_cursor": "string"
}