List Pix Request Schedules with pagination
List single Pix Request Schedules filtered by optional fields. Query params: ispb, accountNumber (required), branch (required), status (optional), recurrenceId (optional - filters schedules linked to the given recurrence), senderTaxId (optional), receiverTaxId (optional), startDate (optional), endDate (optional), page (default: 0), size (default: 50), sort (e.g. scheduledDate,desc)
- Type: stringispb
Sender account ISPB.
- Type: stringaccount
Number min length:1requiredSender account number.
- Type: stringbranchmin length:1required
Sender account branch.
- Type: string enumstatus
Status filter.
values- A
C T I V E - I
N A C T I V E - C
O M P L E T E D - R
E J E C T E D - E
X P I R E D - P
E N D I N G
- Type: string enumsource
Source filter (MANUAL or PIX_AUTOMATIC).
values- M
A N U A L - P
I X _ A U T O M A T I C
- Type: stringmandate
Id Mandate identifier filter.
- Type: stringsender
Tax Id Sender tax ID (CPF/CNPJ) filter.
- Type: stringreceiver
Tax Id Receiver tax ID (CPF/CNPJ) filter.
- Type: string Format: uuidrecurrence
Id Recurrence identifier filter.
- Type: stringstart
Date Pattern: ^\d{4}-\d{2}-\d{2}$Start date filter (yyyy-MM-dd). Lower bound for the schedule date.
- Type: stringend
Date Pattern: ^\d{4}-\d{2}-\d{2}$End date filter (yyyy-MM-dd). Upper bound for the schedule date.
- Type: integer Format: int32page
Page number (0-indexed).
- Type: integer Format: int32size
Page size.
- Type: array string[]sort
Sort fields (e.g. scheduledDate,desc).
- Type: stringIdempotency
- Key required
- application/json
curl 'http://localhost:8080/api/v1/pix-schedules?accountNumber=123456789&branch=0001' \
--header 'Idempotency-Key: ' \
--header 'Authorization: Bearer YOUR_SECRET_TOKEN'
{
"items": [
{
"id": "string",
"status": "ACTIVE",
"createdAt": "string",
"updatedAt": "string",
"initiationMethod": "APDN",
"priority": "HIGH",
"priorityType": "PAGAGD",
"purpose": "GSCB",
"amount": 1,
"userDescription": "string",
"sender": {
"name": "string",
"document": {
"type": "CPF",
"value": "string"
},
"account": {
"ispb": "string",
"type": "CACC",
"branch": "string",
"number": "string"
}
},
"receiver": {
"key": "string",
"name": "string",
"document": {
"type": "CPF",
"value": "string"
},
"account": {
"ispb": "string",
"type": "CACC",
"branch": "string",
"number": "string"
}
},
"source": "MANUAL",
"scheduledDate": "2026-07-29",
"endToEndId": "string",
"msgId": "string",
"settledAt": "2026-07-29T19:28:46.582Z",
"recurrenceId": "string",
"installment": 1,
"totalInstallments": 1,
"reconciliationId": "REC-20260408-001",
"totalAmount": 1
}
],
"totalItems": 1,
"page": 1,
"size": 1,
"totalPages": 1,
"hasNext": true
}