List Webhook Endpoints

View Markdown

List all webhook endpoints.


GET
/webhooks/endpoints

Authorization

AuthorizationRequiredBearer <token>

API key authentication using "Authorization: Bearer <api_key>" header. Use your project API key (ittybit_*).

In: header

Query Parameters

afterstring
beforestring
limitstring

Response Body

Default Response

responseRequiredarray<object>
[
  {
    "id": "we_3nF8tGy1bK",
    "object": "webhook_endpoint",
    "name": "Production webhook",
    "url": "https://example.com/webhooks/ittybit",
    "topics": [
      "task.succeeded",
      "task.failed",
      "run.succeeded",
      "run.failed"
    ],
    "status": "active",
    "secret": "whsec_MIGfMA0GCSqGSIb3DQEBA...",
    "verified_at": 1735689600,
    "created_at": 1735689600,
    "updated_at": 1735689600
  }
]