Documentation IndexFetch the complete documentation index at: /llms.txtUse this file to discover all available pages before exploring further.
Fetch the complete documentation index at: /llms.txt
Use this file to discover all available pages before exploring further.
TypeScript
const options = {method: 'GET', headers: {Authorization: 'Bearer <token>'}}; fetch('https://sandbox.api.enfinitos.com/v1/webhooks', options) .then(res => res.json()) .then(res => console.log(res)) .catch(err => console.error(err));
{ "ok": true, "data": { "subscriptions": [ { "subscriptionId": "<string>", "developerId": "<string>", "url": "<string>", "events": [], "label": "<string>", "active": true, "createdAt": "2023-11-07T05:31:56Z", "lastDeliveredAt": "2023-11-07T05:31:56Z", "secretLastRotatedAt": "2023-11-07T05:31:56Z" } ], "total": 123 }, "contractVersion": "<string>" }
List every webhook subscription the caller owns. Requires scope audit:read.
audit:read
API key sent as Authorization: Bearer <api-key>.
Authorization: Bearer <api-key>
All subscriptions.
Route-specific payload. Operation responses refine this.
Show child attributes
"v1.0"