POST /api/v1/webhooks/recall — Recall Webhook
This endpoint triggers a webhook call within the Sadq Integration Service. It is typically used to manually trigger webhook notifications or synchronize external systems with events or data changes from Sadq.
Authentication
SadqAuthorize
Request Headers
- Authorization (required)
- Bearer {token}
- Content-Type (required)
- application/json
Request Body
Content-Type: application/json
- requestId (GUID, required)
- The unique identifier of the request/envelope to trigger the webhook for.
{
"requestId": "GUID"
}Responses
HTTP 200 — Webhook recalled
{
"errorCode": 0,
"message": null,
"returnUrl": "/dashboard",
"stateValidationErrors": null,
"signature": ""
}