list
List all webhooks.Maximum number of items to return per page
Pagination cursor for fetching the next page
List of webhook objects
Cursor for the next page, or None if no more results
get
Retrieve a specific webhook by UID.Unique identifier of the webhook
Unique identifier for the webhook
URL where webhook events will be sent
List of event types this webhook subscribes to
Whether the webhook is currently active
Timestamp when the webhook was created
create
Create a new webhook.URL where webhook POST requests will be sent
List of event types to subscribe to (e.g., “dataset.created”, “task.completed”, “export.finished”)
Whether the webhook should be active immediately (default: true)
Secret key used to sign webhook payloads for verification
Unique identifier for the webhook
Configured target URL
Subscribed event types
Active status
update
Update an existing webhook.Unique identifier of the webhook to update
Updated target URL
Updated list of event types
Updated active status
Unique identifier for the webhook
Updated target URL
Updated event types
Updated active status
delete
Delete a webhook.Unique identifier of the webhook to delete
test
Send a test event to a webhook to verify it’s working.Unique identifier of the webhook to test
Whether the test delivery was successful
HTTP status code returned by the webhook endpoint
Response time in milliseconds
Test result message or error details
Webhook Deliveries
Theclient.webhook_deliveries resource allows you to inspect webhook delivery attempts and their results.
list
List webhook delivery attempts.Maximum number of items to return per page
Pagination cursor for fetching the next page
List of webhook delivery objects
Cursor for the next page, or None if no more results
get
Retrieve details about a specific webhook delivery.Unique identifier of the webhook delivery
Unique identifier for the delivery
UID of the webhook that was triggered
The type of event that triggered this delivery
Delivery status: “pending”, “success”, “failed”
HTTP status code returned by the webhook endpoint
Response time in milliseconds
Number of delivery attempts made
Timestamp when the delivery was created
Timestamp when the delivery was completed (success or final failure)
Example: Monitor webhook deliveries
Async Methods
All methods are available in async form throughAsyncClient: