Webhooks allow you to be notified every time a custom event is triggered. Note: Webhooks are ONLY triggered for custom events, not for standard tracking events.
Here you are able to set an endpoint to which we'll send all custom events.
Once created, you'll see a validation token. This token will be included on every
request sent to the endpoint as a Bearer token in the header: X-Vexo-API-Token: Bearer <your-token>.
The request payload will be a JSON array of custom events with the following structure:
[
{
"id": "string",
"name": "string",
"args": {
// Custom properties object
},
"timestamp": number
}
]
