v51

OpenAPI 3.0.0raw.githubusercontent.com2026-07-1000256.1 KB
Webhooks

List Webhooks

Retrieves webhooks for the authenticated team (paginated). Results are capped at limit (default and maximum 1000). When more records exist than are returned, meta.total exceeds data.length; clients with large collections must page with limit/offset to retrieve them all.

get/api/v2/webhooks

Query parameters

limitinteger

Maximum number of webhooks to return.

offsetinteger

Number of webhooks to skip before returning results.

Response

Successfully retrieved webhooks

Example response

{
  "data": [
    {
      "id": "507f1f77bcf86cd799439011",
      "name": "Production Alerts",
      "service": "slack",
      "url": "https://hooks.slack.com/services/T00000000/B00000000/XXXXXXXXXXXXXXXXXXXXXXXX",
      "description": "Sends critical alerts to the #incidents channel",
      "updatedAt": "2025-06-15T10:30:00.000Z",
      "createdAt": "2025-01-01T00:00:00.000Z"
    }
  ],
  "meta": {
    "total": 142,
    "limit": 50,
    "offset": 100
  }
}