curl --request POST \
--url https://api.example.com/webhooks/{workflow_id}/{secret}{
"message": "<string>",
"wf_id": "<string>",
"wf_exec_id": "<string>",
"payload": "<unknown>"
}Webhook endpoint to trigger a workflow.
This is an external facing endpoint is used to trigger a workflow by sending a webhook request.
The workflow is identified by the path parameter, which is equivalent to the workflow id.
curl --request POST \
--url https://api.example.com/webhooks/{workflow_id}/{secret}{
"message": "<string>",
"wf_id": "<string>",
"wf_exec_id": "<string>",
"payload": "<unknown>"
}wf_[0-9a-zA-Z]+Echo the request payload back to the caller
Was this page helpful?