Webhook Endpoints

View Markdown

Overview

Webhook endpoints let you subscribe to events in your project and receive real-time notifications via HTTP.


Webhook Endpoint Object

webhook_endpoint.json
{
  "id": "we_abcdefgh12345678",
  "object": "webhook_endpoint",
  "url": "https://your-app.com/webhooks/ittybit",
  "topics": ["task.succeeded", "task.failed"],
  "status": "active",
  "created_at": 1735689825,
  "updated_at": 1735689825
}

See Webhooks for detailed coverage.


Endpoints

GET

List Webhook Endpoints

POST

Create Webhook Endpoint

GET

Get Webhook Endpoint

PATCH

Update Webhook Endpoint

DELETE

Delete Webhook Endpoint

On this page