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

x-api-key
string
header
required

Path Parameters

webhookLogId
string
required

Response

200
application/json

Registro de webhook recuperado con éxito por ID

The response is of type object.