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"
}
]
AUTHORIZATIONS: Bearer <token>
Give you a list of all web hooks you have set up under a business account.
RESPONSE
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"
}
]