Create a webhook endpoint
A URL and a secret are required for webhook endpoint creation. While URLs are endpoints where Uiza sends the events to, secrets are used to generate webhook signatures.
/v1/webhook
POST
https://api.uiza.io/api-account/owner/v1/webhook
Set up your webhook endpoint to receive live events from Uiza
Headers
Authentication
string
Authentication token or Api Key
Request Body
url
string
The URL of the webhook endpoint.
event_type
array
The list of events to enable for this endpoint. [’*’]
indicates that all events are enabled, except those that require explicit selection.
status
string
The status of the webhook. It can be enabled
or disabled
.
/v1/webhook_endpoints
POST
https://api.uiza.sh/v1/webhook_endpoints
Request Body
secret
string
The token used to validate the communication between Uiza and the webhook endpoint.
url
string
The URL of the webhook endpoint.
Last updated