Legacy Endpoints
Get all merchant webhooks
GET
/
api
/
webhook
/
merchant
curl --request GET \
--url https://api.atoa.me/api/webhook/merchant \
--header 'Authorization: Bearer <token>'[
{
"webhookId": "4a124f25-fe8d-47a0-92c8-16d94cbfe24c",
"url": "https://api/endpoint",
"event": "PAYMENTS_STATUS"
},
{
"webhookId": "8b3f6a12-cd45-4e89-ab12-7d9e3f1c5a08",
"url": "https://api/endpoint",
"event": "POS_PAYMENT_STATUS"
}
]
v1 Legacy API — Returns a flat list with one entry per event subscription. For new integrations, use List Endpoints (v2) which returns paginated endpoint objects with all subscribed events grouped per endpoint.
Returns all active webhook subscriptions for your business account.
Authorization
Bearer <token>
Response
Array Of Objects
curl --request GET \
--url https://api.atoa.me/api/webhook/merchant \
--header 'Authorization: Bearer <token>'[
{
"webhookId": "4a124f25-fe8d-47a0-92c8-16d94cbfe24c",
"url": "https://api/endpoint",
"event": "PAYMENTS_STATUS"
},
{
"webhookId": "8b3f6a12-cd45-4e89-ab12-7d9e3f1c5a08",
"url": "https://api/endpoint",
"event": "POS_PAYMENT_STATUS"
}
]