/v1/webhook-endpoints (GET)
GET
/v1/webhook-endpoints
const url = 'http://localhost:8787/v1/webhook-endpoints';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:8787/v1/webhook-endpoints \ --header 'Authorization: Bearer <token>'Authorizations
Section titled “Authorizations”Responses
Section titled “Responses”Every webhook endpoint configured for this tenant. secret is NEVER included here — only the POST response shows it, exactly once (docs/04-public-api.md).
Media typeapplication/json
object
webhookEndpoints
required
Array<object>
object
createdAt
required
string
enabled
required
boolean
eventTypes
required
Array<string>
failureCount
required
integer
id
required
string format: uuid
lastFailureAt
required
string | null
lastSuccessAt
required
string | null
url
required
string
Example
{ "webhookEndpoints": [ { "eventTypes": [ "reservation.created" ] } ]}No API key context resolved for this request.
Media typeapplication/problem+json
object
code
required
string
detail
required
string
status
required
number
title
required
string
type
required
string
Example
{ "code": "webhook_endpoint_not_found"}