List webhooks

Returns every developer webhook subscription configured for the current workspace. Plaintext secrets are never returned from list reads.
https://api.unipost.dev
GET/v1/webhooks?{limit}
Authorization
In header ยท Bearer <token>
Query

Authorization

AuthorizationBearer <token>In header
Workspace API key.

Query Params

limit?integer
Maximum number of webhook subscriptions to return. Default is all, max 100.

Response Body

200
data[]array
Webhook subscriptions for the current workspace.
data[].idstring
Webhook subscription ID.
data[].namestring
Human-readable webhook label.
data[].urlstring
Destination URL.
data[].eventsstring[]
Subscribed event names.
data[].activeboolean
Whether delivery is enabled.
data[].secret_previewstring
Short preview of the active signing secret.
meta.totalnumber
Total webhook count in the response.
meta.limitnumber
Applied list limit for this response.
request_idstring
Request identifier for debugging and support.
401
error.codestring
Usually "UNAUTHORIZED".
error.normalized_codestring
Lowercase alias such as "unauthorized".
error.messagestring
Human-readable error message.
request_idstring
Request identifier for debugging and support.
500
error.codestring
Usually "UNAUTHORIZED".
error.normalized_codestring
Lowercase alias such as "unauthorized".
error.messagestring
Human-readable error message.
request_idstring
Request identifier for debugging and support.