Webhook Notification Payload
curl --request POST \
--url https://api.example.com/webhooks/example \
--header 'Content-Type: application/json' \
--data '
{
"event_id": "<string>",
"info": {
"agent_id": "<string>",
"agent_name": "<string>",
"execution_id": "<string>",
"execution_url": "<string>",
"payload": {},
"metadata": {}
},
"timestamp": "2023-11-07T05:31:56Z",
"type": "execution"
}
'API Reference
Webhook Notification Payload
Example endpoint to expose the webhook notification schema. This operation is for documentation purposes only.
POST
/
webhooks
/
example
Webhook Notification Payload
curl --request POST \
--url https://api.example.com/webhooks/example \
--header 'Content-Type: application/json' \
--data '
{
"event_id": "<string>",
"info": {
"agent_id": "<string>",
"agent_name": "<string>",
"execution_id": "<string>",
"execution_url": "<string>",
"payload": {},
"metadata": {}
},
"timestamp": "2023-11-07T05:31:56Z",
"type": "execution"
}
'Body
application/json
Top-level V2 notification structure sent to webhook endpoints
Unique identifier for this notification event
Category-specific information about the event. Currently only execution events are supported.
Show child attributes
Show child attributes
Timestamp when the event occurred
The category of the notification (execution, agent, workflow, etc.)
Available options:
execution Response
204
There is no content to send for this request, but the headers may be useful.
⌘I

