Returns all webhook subscriptions for the current company. The endpoint does not support filtering or pagination and is intended for syncing subscription configuration into your integration UI or operational admin panel.
cURL
curl --request GET \ --url https://app.fintoro.sk/api/public/v1/webhook-subscriptions \ --header 'Authorization: Bearer <token>'
{ "data": [ { "id": 801, "companyId": 15, "name": "ERP sync", "url": "https://example.com/webhooks/fintoro", "isActive": true, "subscribedEvents": [ "invoices.created", "invoices.updated" ], "lastSuccessAt": "2026-03-18T15:04:05Z", "lastFailureAt": "2026-03-18T15:05:42Z", "disabledAt": null, "disabledReason": null, "createdAt": "2026-03-18T14:59:12Z", "updatedAt": "2026-03-18T15:01:33Z" } ] }
Bearer token created for a specific company in Integrations → API.
Webhook subscription list.
List of webhook subscriptions for the current company.
Show child attributes