Country:
/v1/webhooks
Obtener los Webhooks creados
El endpoint permite recuperar los enpoints creados por el comercio. El mismo devuelve la url, la descripción, su estado, y más.
Response Examples
200
200
{
"data": [
{
"id": "example_string",
"description": "example_string",
"url": "example_string",
"events": [
"example_string"
],
"rate_limit": 123,
"status": "example_string",
"created_at": "example_string",
"updated_at": "example_string"
}
]
}Language
Login required to test API
Code Examples
cURL
curl -X GET "https://api.akua.la/v1/webhooks" \
-H "Authorization: Bearer YOUR_API_KEY" \
-H "Content-Type: application/json"