GET
/
webhook
/
log
curl --request GET \
  --url https://api.fint.app/api/v1/webhook/log \
  --header 'x-api-key: <api-key>'
{
  "logs": {
    "data": [
      {
        "id": "<string>",
        "webhookId": 123,
        "status": "success",
        "createdAt": "<string>",
        "currentAttempt": 123,
        "maxAttempts": 123,
        "event": "payment.created",
        "url": "<string>",
        "lastAttempt": {
          "status": "success",
          "request": "<any>",
          "response": "<string>",
          "createdAt": "<string>",
          "attempt": 123
        }
      }
    ],
    "total": 123,
    "totalPages": 123,
    "currentPage": 123,
    "limit": 123,
    "hasNextPage": true,
    "hasPreviousPage": true
  }
}

Authorizations

x-api-key
string
header
required

Query Parameters

page
number | null
default:0
limit
number
default:10
Required range: x > 0
status
enum<string>
Available options:
success,
error,
ongoing

Response

200
application/json
Registros de webhook recuperados con éxito
logs
object
required