Skip to content

Get webhook details

GET
/api/v1/tenants/{tenant_id}/workspaces/{workspace_id}/webhooks/{webhook_id}

Get a specific webhook subscription by ID.

webhook_id
required
Webhook Id
string format: uuid
X-Workspace-ID
Any of:
string
X-API-Key
Any of:
string
X-Tenant-ID
Any of:
string

Successful Response

Examples

Webhook detail response

{
"id": "f2f07352-1259-4a10-9fe3-2234f0ebdf8a",
"url": "https://erp.obs.ng/integrations/zutax/webhooks",
"events": [
"invoice.submitted",
"invoice.validated",
"invoice.dispatched"
],
"is_active": true,
"secret_last4": "8t2",
"last_delivery_at": "2026-02-11T12:20:18Z"
}

Validation Error

HTTPValidationError
object
detail
Detail
Array<object>
ValidationError
object
loc
required
Location
Array
msg
required
Message
string
type
required
Error Type
string
Examples

422 response example

{
"detail": [
{
"loc": [],
"msg": "string",
"type": "string"
}
]
}