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 Settlement priority type
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
- 400
Invalid request
Erros desta resposta
Código interno HTTP Descrição Erro normativo Bacen PIX-SCH-0005400 Invalid schedule start date — PIX-SCH-0006400 Schedule not found — PIX-SCH-0009400 Schedule update is not allowed for current status — PIX-SCH-0021400 Schedule is linked to a recurrence and cannot be modified directly. Update the parent recurrence instead. — - 404
Schedule not found
Request Example for patch/api/v1/pix-schedules/{id}
curl http://localhost/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": 150,
"userDescription": "Gym membership",
"priority": "NORM",
"priorityType": "PAGAGD",
"initiationMethod": "MANU",
"purpose": "IPAY",
"sender": {
"name": "Joao da Silva",
"document": {
"type": "CPF",
"value": "12345678901"
},
"account": {
"ispb": "12345678",
"type": "CACC",
"branch": "0001",
"number": "12345678"
}
},
"receiver": {
"key": "+5511989450870",
"name": "Joao da Silva",
"document": {
"type": "CPF",
"value": "12345678901"
},
"account": {
"ispb": "12345678",
"type": "CACC",
"branch": "0001",
"number": "12345678"
}
},
"scheduledDate": "2026-04-30"
}'
{
"id": "c0a8012e-1234-5678-90ab-000000000001",
"status": "ACTIVE",
"createdAt": "2026-03-01T09:30:00",
"updatedAt": "2026-03-15T12:00:00",
"initiationMethod": "MANU",
"priority": "NORM",
"priorityType": "PAGAGD",
"purpose": "IPAY",
"amount": 150,
"userDescription": "Gym membership",
"sender": {
"name": "Joao da Silva",
"document": {
"type": "CPF",
"value": "12345678901"
},
"account": {
"ispb": "12345678",
"type": "CACC",
"branch": "0001",
"number": "12345678"
}
},
"receiver": {
"key": "+5511989450870",
"name": "Joao da Silva",
"document": {
"type": "CPF",
"value": "12345678901"
},
"account": {
"ispb": "12345678",
"type": "CACC",
"branch": "0001",
"number": "12345678"
}
},
"source": "MANUAL",
"scheduledDate": "2026-04-30",
"endToEndId": "E1234567820260430143000ABC12345",
"msgId": "M20260101000000001",
"settledAt": "2026-06-22T14:30:00Z",
"failureReason": "FF08",
"recurrenceId": "c0a8012e-1234-5678-90ab-000000000002",
"installment": 3,
"totalInstallments": 12,
"reconciliationId": "REC20260408001",
"totalAmount": 150
}