Contactos - Operaciones Básicas
Contactos - Gestión de Items
Contactos - Gestión de Tags
Contactos - Estados
Etiquetas (Tags)
Facturas
Webhook
Obtener registro de webhook por ID
Obtener detalles del registro de webhook por ID
GET
/
webhook
/
log
/
:webhookLogId
curl --request GET \
--url https://api.fint.app/api/v1/webhook/log/:webhookLogId \
--header 'x-api-key: <api-key>'
{
"id": "<string>",
"webhookId": 123,
"status": "success",
"createdAt": "<string>",
"currentAttempt": 123,
"maxAttempts": 123,
"event": "payment.created",
"url": "<string>",
"attempts": [
{
"status": "success",
"request": "<any>",
"response": "<string>",
"createdAt": "<string>",
"attempt": 123
}
]
}
Authorizations
Path Parameters
Response
200
application/json
Registro de webhook recuperado con éxito por ID
The response is of type object
.
curl --request GET \
--url https://api.fint.app/api/v1/webhook/log/:webhookLogId \
--header 'x-api-key: <api-key>'
{
"id": "<string>",
"webhookId": 123,
"status": "success",
"createdAt": "<string>",
"currentAttempt": 123,
"maxAttempts": 123,
"event": "payment.created",
"url": "<string>",
"attempts": [
{
"status": "success",
"request": "<any>",
"response": "<string>",
"createdAt": "<string>",
"attempt": 123
}
]
}
Assistant
Responses are generated using AI and may contain mistakes.