Poll FundsRecovery event notifications from DICT

Returns a cursor-paginated list of FundsRecovery lifecycle event notifications. Events cover state changes originating from Bacen DICT (e.g. counterparty analysis completion, DICT timeouts) rather than tenant-initiated REST calls. Poll until hasMore=false. Recommended cadence: Bacen day-3 calendar schedule. Bacen citation: DICT API v2.10.1 §4.2.4 passo 6, calendário Dia 3 (mgmt/bacen-docs/med/Guia_MED.pdf, SHA256:d9daabc5).

Query Parameters
  • cursor
    Type: string

    Opaque cursor from a previous response to continue reading the event stream. Omit to start from the oldest unacknowledged event.

  • limit
    Type: string

    Maximum number of events to return per page. Min: 1. Max: 1000 (Bacen limit).

Responses
  • application/json
  • application/json
  • application/json
Request Example for get/api/v1/funds-recovery/events
curl http://localhost:8080/api/v1/funds-recovery/events \
  --header 'Authorization: Bearer YOUR_SECRET_TOKEN'
{
  "events": [
    {
      "eventId": "string",
      "fundsRecoveryId": "123e4567-e89b-12d3-a456-426614174000",
      "eventType": "string",
      "status": "CREATED",
      "timestamp": "string",
      "rawPayload": null
    }
  ],
  "cursor": null,
  "hasMore": true
}