List this tenant's webhook destinations — server token only
GET
/v1/webhooks
const url = 'http://localhost:3000/v1/webhooks';const options = {method: 'GET', headers: {Authorization: 'Bearer <token>'}};
try { const response = await fetch(url, options); const data = await response.json(); console.log(data);} catch (error) { console.error(error);}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.
Authorizations
Section titled “Authorizations”Responses
Section titled “Responses”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
message
required
string
requestId
required
string
fields
Present only for VALIDATION_FAILED.
Array<object>
object
path
string
message
string
Example
{ "error": { "code": "VALIDATION_FAILED" }}