GET /api/v1/webhooks/{id} — Get Webhook by ID
This API allows you to retrieve a specific webhook configuration based on its ID from the system.
Authentication
SadqAuthorize
Request Headers
- Authorization (required)
- Bearer {token}
Path Parameters
- id (string, required)
- The unique identifier of the webhook to retrieve.
Responses
HTTP 200 — Webhook details
{
"data": {
"id": "4ad46fc9-a3c4-442d-9c10-680213a76486",
"webhookUrl": "https://example.com/webhook",
"accountId": "989f0e83-6913-4b7c-9ab1-109a3fbc4262",
"isDefault": true,
"headerToken": "Bearer secret_token_12345"
},
"errorCode": 0,
"message": null,
"returnUrl": "/dashboard",
"stateValidationErrors": null,
"signature": ""
}