Skip to main content
POST
/
api
/
workflows
/
webhook
Trigger a workflow via webhook
curl --request POST \
  --url https://your-instance.example.com/api/workflows/webhook \
  --header 'Authorization: Bearer <token>' \
  --header 'Content-Type: application/json' \
  --data '
{
  "webhookId": "<string>",
  "payload": {}
}
'
{}

Authorizations

Authorization
string
header
required

Bearer authentication header of the form Bearer <token>, where <token> is your auth token.

Body

application/json
webhookId
string
required
payload
object

Response

Webhook processed successfully

Generic response envelope. Endpoint-specific fields are intentionally open.