Skip to main content

Webhooks API

Manage webhook endpoint registrations.

Create webhook

POST /v1/webhooks

{
"url": "https://yourapp.com/webhooks/flexops",
"events": ["tracking.updated", "tracking.delivered", "label.created"],
"secret": "whsec_your_secret"
}

List webhooks

GET /v1/webhooks

Delete webhook

DELETE /v1/webhooks/:id

Test webhook

POST /v1/webhooks/:id/test

Sends a test event to verify your endpoint is receiving and processing webhooks correctly.

Webhook events reference

See Webhooks concept guide for the full event list, payload format, and signature verification.