Webhook
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"
}
]
Gives you the list of all webhooks you have setup under a 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"
}
]