Obter Webhook
Este endpoint retorna informações detalhadas sobre um webhook previamente registrado, usando seu identificador único.
scope: webhooks.read
Path parameters
webhook_idstring · uuidRequiredExample:
01977f6d-5c06-7228-86f6-f4fc01305143
Header parameters
AcceptstringOptionalExample:
application/json
Content-TypestringOptionalExample:
application/json
X-API-KeystringRequiredExample:
{{API_KEY}}
Responses
200
Sucesso
application/json
403
Proibido
application/json
404
Não Encontrado
application/json
500
Erro Interno do Servidor
application/json
get
GET /banking/v1/webhooks/{webhook_id} HTTP/1.1
Host: api.aurixpay.ws
X-API-Key: text
Accept: */*
{
"id": "01977f6d-5c06-7228-86f6-f4fc01305143",
"merchant_id": "019764e0-4ab4-706a-b399-9c3d541689a3",
"url": "https://www.youtube.com/watch?v=amazLyuDbTA",
"events": [
"transaction.created",
"transaction.updated"
],
"created_at": "2025-06-17T19:46:02.000000Z",
"updated_at": "2025-06-17T19:46:02.000000Z",
"deleted_at": null,
"bank_account_id": "01976540-f21b-72b2-acf0-f0005d032d6f"
}