Receive Webhook
POST /api/v1/webhooks/{webhook_key}
POST
/api/v1/webhooks/{webhook_key}
Receive a webhook and trigger the associated workflow.
This is a PUBLIC endpoint - no authentication required.
The webhook payload is passed to the workflow as trigger_data.
Headers (optional):
x-webhook-signature: HMAC-SHA256 signature of the payloadx-hub-signature-256: GitHub-style signature (sha256=…)
Rate Limit: 60 requests per minute per webhook
Example payload:
{
"event": "order.created",
"data": {
"order_id": 123,
"customer_email": "cliente@example.com"
}
}
Returns:
success: Whether the workflow was triggeredexecution_id: ID of the workflow executionworkflow_id: ID of the triggered workflowstatus: Execution status (pending, running, completed, failed)
Parameters
Seção intitulada “ Parameters ”Path Parameters
Seção intitulada “Path Parameters ” webhook_key
required
Webhook Key
string
Responses
Seção intitulada “ Responses ”Successful Response
WebhookResponse
Response for webhook trigger
Validation Error
HTTPValidationError
object
detail
Detail
Array<object>
ValidationErrorobject
loc
required
Location
Array
msg
required
Message
string
type
required
Error Type
string