List this tenant's webhook destinations
GET
/operator/webhooks/destinations
const url = 'http://localhost:3000/operator/webhooks/destinations';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/operator/webhooks/destinations \ --header 'Authorization: Bearer <token>'Pass-through of GET /v1/webhooks for the operator console. The shape is Outpost’s (we do not transform it) — see that route for the destination record.
Only owner and member may read; platform staff have no tenant and get 403.
Authorizations
Section titled “Authorizations”Responses
Section titled “Responses”The tenant’s destinations (Outpost’s shape, unmodified).
Media typeapplication/json
Array<object>
object
key
additional properties
any
Examplegenerated
[ {}]Invalid, expired, revoked, or absent token.
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" }}Caller is platform staff, who have no tenant to inspect.
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" }}