Skip to main content
GET
/
v1
/
dict
/
reconciliation
List All Reconciliation Jobs
curl --request GET \
  --url https://plugin-pix-indirect.api.lerian.net/v1/dict/reconciliation \
  --header 'Authorization: Bearer <token>'
{
  "items": [
    {
      "completedAt": "2024-01-15T11:30:00Z",
      "createdAt": "2024-01-15T10:30:00Z",
      "entriesAdded": 10,
      "entriesRemoved": 5,
      "errorMessage": "File download failed",
      "expiresAt": "2024-01-15T12:30:00Z",
      "fileId": "file-123456",
      "id": "0192c3a4-5b6d-7e8f-9a0b-1c2d3e4f5a6b",
      "jobType": "FULL_RECONCILIATION",
      "keyType": "CPF",
      "orphanEntries": 2,
      "processedItems": 850,
      "reason": "Manual reconciliation requested",
      "startedAt": "2024-01-15T10:30:00Z",
      "status": "COMPLETED",
      "syncFrom": "2024-01-15T10:30:00Z",
      "totalItems": 1000,
      "updatedAt": "2024-01-15T11:30:00Z"
    }
  ],
  "limit": 10,
  "page": 1,
  "total": 25
}

Authorizations

Authorization
string
header
required

Bearer authentication header of the form Bearer <token>, where <token> is your auth token.

Query Parameters

page
integer

Page number for pagination (default: 1, minimum: 1)

limit
integer

Maximum number of items per page (default: 10, range: 1-100)

key_type
string

Filter by key type: CPF, CNPJ, EMAIL, PHONE, EVP

job_type
string

Filter by job type: EVENT_SYNC, FULL_RECONCILIATION

status
string

Filter by status: WAITING_FILE, PENDING, PROCESSING, COMPLETED, FAILED, CANCELLED

sort_order
string

Sort direction: asc or desc (default: desc - newest first)

start_date
string

Filter from date (YYYY-MM-DD)

end_date
string

Filter to date (YYYY-MM-DD)

Response

OK

items
object[]

Items is the array of reconciliation jobs for the current page

limit
integer

Limit is the number of items per page

Example:

10

page
integer

Page is the current page number

Example:

1

total
integer

Total is the total number of reconciliation jobs matching the filters

Example:

25