List portability claims
Lists claims associated with the given account branch and account number, with optional filters.
Query Parameters
- Type: stringbranchmin length:1required
Account branch number
- Type: stringaccount
Number min length:1requiredAccount number
- Type: string enumstatus
Filter by claim status
values- O
P E N - W
A I T I N G _ R E S O L U T I O N - C
O N F I R M E D - C
A N C E L L E D - C
O M P L E T E D
- Type: string enumtype
Filter by claim type
values- P
O R T A B I L I T Y - O
W N E R S H I P
- Type: string enumkey
Type Filter by Pix key type
values- E
V P - C
P F - C
N P J - P
H O N E - E
M A I L
- Type: booleanis
Donor Filter by isDonor flag — true: account is the donor; false: account is not the donor
- Type: booleanis
Claimer Filter by isClaimer flag — true: account is the claimer; false: account is not the claimer
- Type: string Format: datecreated
After Filter claims created on or after this date (ISO 8601 date)
- Type: string Format: datemodified
After Filter claims last modified on or after this date (ISO 8601 date)
- Type: string Format: datemodified
Before Filter claims last modified before this date (ISO 8601 date)
- Type: integer Format: int32page
Page number to retrieve (zero-based, minimum: 0)
- Type: integer Format: int32size
Number of records per page (minimum: 1, maximum: 500)
- Type: array string[]sort
Sort criteria list
Headers
- Type: stringIdempotency
- Key requiredUnique idempotency key for the request (UUID format)
Responses
- application/json
- application/json
- application/json
Request Example for get/api/v1/claims
curl 'http://localhost:8080/api/v1/claims?branch=&accountNumber=' \
--header 'Idempotency-Key: ' \
--header 'Authorization: Bearer YOUR_SECRET_TOKEN'
{
"items": [
{
"id": "123e4567-e89b-12d3-a456-426614174000",
"dictClaimId": "123e4567-e89b-12d3-a456-426614174000",
"type": "PORTABILITY",
"key": "string",
"keyType": "EVP",
"status": "OPEN",
"claimerParticipant": "string",
"donorParticipant": "string",
"claimer": {
"personType": "string",
"taxId": "string",
"name": "string",
"tradeName": "string"
},
"claimerAccount": {
"participant": "string",
"branch": "string",
"accountNumber": "string",
"accountType": "string",
"openingDate": "string"
},
"resolutionPeriodEnd": "2026-07-29T19:28:46.545Z",
"completionPeriodEnd": "2026-07-29T19:28:46.545Z",
"closingPeriodEnd": "2026-07-29T19:28:46.545Z",
"expiresAt": "2026-07-29T19:28:46.545Z",
"isDonor": true,
"isClaimer": true,
"cancelReason": "USER_REQUESTED",
"cancelledBy": "DONOR",
"confirmedBy": "DONOR",
"completedBy": "CLAIMER",
"lastModified": "2026-07-29T19:28:46.545Z",
"requestedAt": "2026-07-29T19:28:46.545Z",
"acknowledgedAt": "2026-07-29T19:28:46.545Z",
"confirmedAt": "2026-07-29T19:28:46.545Z",
"cancelledAt": "2026-07-29T19:28:46.545Z",
"completedAt": "2026-07-29T19:28:46.545Z"
}
],
"totalItems": 1,
"page": 1,
"size": 1,
"totalPages": 1,
"hasNext": true
}