Webhooks API
Use the AI Inbx webhooks API. Browse endpoints, request parameters, response schemas, and code examples for your integration.
Configure event delivery and inspect delivery attempts.
Endpoints
| Method | Operation | Path |
|---|---|---|
GET |
List webhook endpoints | /webhook-endpoints |
POST |
Create a webhook endpoint | /webhook-endpoints |
GET |
Retrieve a webhook endpoint | /webhook-endpoints/{endpoint_id} |
DELETE |
Delete a webhook endpoint | /webhook-endpoints/{endpoint_id} |
PATCH |
Update a webhook endpoint | /webhook-endpoints/{endpoint_id} |
POST |
Rotate a webhook signing secret | /webhook-endpoints/{endpoint_id}/rotate-secret |
POST |
Send a test webhook | /webhook-endpoints/{endpoint_id}/test |
GET |
List webhook deliveries | /webhook-endpoints/{endpoint_id}/deliveries |
POST |
Retry webhook deliveries | /webhook-endpoints/{endpoint_id}/deliveries/retry |
Request essentials
Use https://api.aiinbx.com/api/v2 as the base URL and send your API key in Authorization: Bearer <key>. Keep credentials on your server.
See Authentication for scopes, Conventions for pagination and idempotency, and Errors for recovery guidance. Each endpoint page includes its parameters, response schemas, and copyable curl, JavaScript, and Python examples.