Skip to main content
POST
/
api
/
workflows
/
webhook
/
{applicationId}
Trigger a workflow via webhook with applicationId
curl --request POST \
  --url https://your-instance.example.com/api/workflows/webhook/{applicationId} \
  --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.

Path Parameters

applicationId
string
required

Body

application/json
webhookId
string
required
payload
object

Response

Webhook processed successfully

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