Trigger a workflow execution and receive status updates via webhooks. This endpoint returns immediately with a 202 Accepted response. The actual workflow execution happens in the background.
Store the message ID
messageId in your database. You’ll need it to:Validate parameters before sending
Use environment variables for sensitive data
Request times out
Invalid workflow parameters
Webhook URL not accessible
Bearer authentication header of the form Bearer <token>, where <token> is your auth token.
Workflow run configuration
Unique identifier for the workflow to execute
"12345678-1234-1234-1234-123456789abc"
Parameters specific to your workflow configuration
{
"PATIENT_NAME": "Jane Doe",
"DATE_OF_BIRTH": "1990-01-15"
}URL where status updates will be sent
"https://your-domain.com/webhook"
Job accepted for processing