Skip to main content

Consult temporary Pix limit requests

Lists the requester's own temporary Pix limit requests. This is how you follow the outcome of a request left under manual analysis, in addition to the webhooks.

Request

ENDPOINT
/baas/pix/exceptional_pix_request
METHOD
GET

To consult one specific request, inform its key on the URL: /baas/pix/exceptional_pix_request/PIX_REQUEST_KEY. The response has the same shape, with the list containing only the consulted request.

There is no time restriction on this operation.

Path Params

FieldTypeDescriptionCharacters
pix_request_keyuuidv4Unique identification key of the limit request. Optional — without it, every request is listed.36

Query Params

FieldTypeDescriptionCharacters
account_keyuuidv4Filters by the account the request applies to.36
statusstringFilters by status. Accepts several comma-separated values.
pageintegerPage to be returned.
page_sizeintegerNumber of records per page. Maximum and default: 30.
info

The inquiry is always restricted to the requester's own requests — it is not possible to consult another partner's request, even if the pix_request_key is known.

Response

Response Body: 200 OK
{
"data": [
{
"pix_request_key": "9c3b7d21-8f4a-4c2b-9e1d-7a6b5c4d3e2f",
"account_key": "0f2a1e4c-1111-2222-3333-444455556666",
"total_amount": 1200000.00,
"request_reason": "folha de pagamento do cliente Alfa Ltda",
"status": "approved",
"message": "Request approved and available for use today until 20:00."
}
],
"page": 1,
"page_size": 30,
"has_next_page": false,
"requires_manual_approval": false
}

Response Body Params

FieldTypeDescription
dataarrayList of temporary Pix limit requests.
pageintegerPage returned.
page_sizeintegerNumber of records per page.
has_next_pagebooleanIndicates whether there is a next page.
requires_manual_approvalbooleanIndicates whether the requester is under mandatory manual analysis for new requests. See Underutilization.

Fields of each data item:

FieldTypeDescription
pix_request_keyuuidv4Unique identification key of the temporary Pix limit request.
account_keyuuidv4Account the request applies to.
total_amountnumberTotal volume declared for the day.
request_reasonstringReason informed on the request.
statusenumeratorRequest status. See Temporary Pix Request Status.
messagestringDescriptive text of the status, in English.
rejected_reasonstringReason for the refusal, when informed. Optional — it may not come even on a refused request.

Errors

This operation has no specific errors — a pix_request_key that does not belong to the requester simply returns no records. The errors of the other operations are in Error Table for Temporary Pix.