Update a Pix Request Schedule
Updates an existing Pix payment schedule by id. Receiver data is taken from the request payload.
Path Parameters
- Type: string Format: uuididrequired
Headers
- Type: stringIdempotency
- Key required
Body·
required
application/json
- Type: numberamountmin:0.01required
Amount.
- Type: string enuminitiation
Method requiredPayment initiation method.
values- A
P D N - A
P E S - A
U T O - D
I C T - I
N I C - M
A N U - Q
R D N - Q
R E S
- Type: object ·receiverrequired
Receiver/beneficiary information for the Pix transaction
- Type: string Format: datescheduled
Date requiredDate when this schedule will be executed (yyyy-MM-dd).
- Type: object ·senderrequired
Payer/sender information for the Pix transaction
- Type: string enumpriority
Payment priority for the outgoing Pix request (SPI band: HIGH → HIGH, NORM → NORM)
values- H
I G H - N
O R M
- Type: string enumpriority
Type Priority type code (BACEN SPI)
values- P
A G A G D - P
A G F R D - P
A G P R I
- Type: string enumpurpose
Purpose of the outgoing Pix payment (SPI purpose codes)
values- G
S C B - I
P A Y - I
P R T - O
T H R - R
E F U
- Type: stringuser
Description User-provided description.
Responses
- application/json
- 404
Schedule not found
Request Example for patch/api/v1/pix-schedules/{id}
curl http://localhost:8080/api/v1/pix-schedules/123e4567-e89b-12d3-a456-426614174000 \
--request PATCH \
--header 'Idempotency-Key: ' \
--header 'Content-Type: application/json' \
--header 'Authorization: Bearer YOUR_SECRET_TOKEN' \
--data '{
"amount": 0.01,
"userDescription": "",
"priority": "HIGH",
"priorityType": "PAGAGD",
"initiationMethod": "APDN",
"purpose": "GSCB",
"sender": {
"name": "",
"document": {
"type": "CPF",
"value": ""
},
"account": {
"ispb": "",
"type": "CACC",
"branch": "",
"number": ""
}
},
"receiver": {
"key": "",
"name": "",
"document": {
"type": "CPF",
"value": ""
},
"account": {
"ispb": "",
"type": "CACC",
"branch": "",
"number": ""
}
},
"scheduledDate": ""
}'
{
"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.545Z",
"recurrenceId": "string",
"installment": 1,
"totalInstallments": 1,
"reconciliationId": "REC-20260408-001",
"totalAmount": 1
}