Skip to content

List this tenant's webhook destinations — server token only

GET
/v1/webhooks
curl --request GET \
--url http://localhost:3000/v1/webhooks \
--header 'Authorization: Bearer <token>'

Outbound webhooks are delivered via Hookdeck Outpost (isolated infra), which owns destinations, HMAC-SHA256 signing, retries, and the delivery dashboard. These routes require a SERVER token; a user token returns FORBIDDEN. Events delivered: activity.added/removed, reaction.added/removed, follow.added/removed — each fired only when a write actually changed a row, deduped by an idempotency key.

The tenant’s destinations (Outpost’s shape).

Media typeapplication/json
Array<object>
object
Examplegenerated
[
{}
]

Authenticated but not permitted.

Media typeapplication/json
object
error
required
object
code
required
string
Allowed values: VALIDATION_FAILED UNAUTHENTICATED FORBIDDEN NOT_FOUND CONFLICT RATE_LIMITED INTERNAL
message
required
string
requestId
required
string
fields

Present only for VALIDATION_FAILED.

Array<object>
object
path
string
message
string
Example
{
"error": {
"code": "VALIDATION_FAILED"
}
}