Skip to main content
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>",
    "event": "EXECUTION_STARTED",
    "execution_id": "<string>",
    "execution_url": "<string>",
    "payload": {}
  },
  "timestamp": "2023-11-07T05:31:56Z",
  "type": "execution"
}
'

Body

application/json

Top-level V2 notification structure sent to webhook endpoints

event_id
string
required

Unique identifier for this notification event

info
object
required

Category-specific information about the event. Currently only execution events are supported.

timestamp
string<date-time>
required

Timestamp when the event occurred

type
enum<string>
required

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.