Skip to main content

List Scheduled Batches for an Account

Request

ENDPOINT
/account/ACCOUNT_KEY/pix_schedule_batches
MÉTODO
GET

Path Params

FieldTypeDescriptionCharacters
account_keyuuidv4Unique account identification key.36

Query Params

FieldTypeDescriptionCharacters
request_control_keyuuidv4Unique identification key for the request used by the client.36
schedule_batch_statusstringSchedule batch status. Can be sent as a list.20
pageintegerRequested page number. 1 by default.
page_sizeintegerSize of the requested page in the query. 30 by default and max valueMaximum value of 30

Response

STATUS
200
Response Body
{
"data": [
{
"request_control_key": "b6804f32-101e-4702-8fbc-c2dbc4c2caec",
"schedule_batch_key": "8cb70dea-9fb0-4a68-9572-99a72849c8d6",
"schedule_batch_status": "approved",
"created_at": "2021-10-22T20:30:23.459Z"
},
{
"request_control_key": "bf6b0a4b-c7a5-446b-9dad-1ae10b25342a",
"schedule_batch_key": "2479a5cd-079e-4d72-bf4e-16a695bda45e",
"schedule_batch_status": "cancelled",
"created_at": "2021-10-22T20:30:23.459Z"
},
{
"request_control_key": "9d36c03e-2db7-4c90-87ed-6c9ddb3c03c7",
"schedule_batch_key": "5d6b14b9-053f-408c-bcd7-61ecf9224f2c",
"schedule_batch_status": "rejected",
"created_at": "2021-10-22T20:30:23.459Z"
}
],
"pagination": {
"current_page": 1,
"next_page": null,
"rows_per_page": 30
}
}

Query Scheduled Batch for an Account

Request

ENDPOINT
/account/ACCOUNT_KEY/pix_schedule_batch/SCHEDULE_BATCH_KEY
MÉTODO
GET

Path Params

FieldTypeDescriptionCharacters
account_keyuuidv4Unique account identification key.36
schedule_batch_keyuuidv4Unique batch schedule identification key.36

Response

STATUS
200
Response Body
{
"request_control_key": "b6804f32-101e-4702-8fbc-c2dbc4c2caec",
"schedule_batch_key": "8cb70dea-9fb0-4a68-9572-99a72849c8d6",
"schedule_batch_status": "approved",
"created_at": "2021-10-22T20:30:23.459Z"
}