curl --request POST \
--url https://app.splox.io/api/v1/webhooks/{id} \
--header 'Content-Type: application/json' \
--data '
{
"user_id": "12345",
"event": "user.signup",
"email": "[email protected]",
"name": "John Doe"
}
'{
"workflow_request_id": "0199f123-d60e-7ffd-9131-4cc5ab040ee8",
"note": "Webhook received but did not match any event configurations"
}Triggers a workflow execution by sending data to its unique webhook URL. The webhook processes the payload and creates a workflow request.
curl --request POST \
--url https://app.splox.io/api/v1/webhooks/{id} \
--header 'Content-Type: application/json' \
--data '
{
"user_id": "12345",
"event": "user.signup",
"email": "[email protected]",
"name": "John Doe"
}
'{
"workflow_request_id": "0199f123-d60e-7ffd-9131-4cc5ab040ee8",
"note": "Webhook received but did not match any event configurations"
}https://app.splox.io/api/v1/webhooks/{webhook_id}
workflow_request_id that can be used to check execution status.Unique webhook identifier (UUID format)
"0199eeeb-d60e-7ffd-9131-4cc5ab040ee7"
Webhook payload - any JSON data that will be passed to the workflow
The body is of type object.
Webhook processed successfully
Response includes workflow_request_id and echoes back the processed payload