Skip to main content

Search for Pix limit change request

Request

ENDPOINT
/baas/pix/limits_request
METHOD
GET

Query String

FieldTypeDescriptionCharacters
account_keystringIdentification key of the QIAccount36
request_statusstringStatus of the limit request. Valid statuses: "pending_approval", "approved", "rejected", "executed". Can be sent as a list, for example: "pending_approval,approved"
pageintegerPage number being searched-
page_sizeintegerNumber of items per page-

Response

STATUS
200
Response Body
{
"pagination": {
"current_page": 0,
"next_page": 1,
"rows_per_page": 15,
"total_pages": 1,
"total_rows": 4
},
"data": [
{
"account_key": "dc94d45c-11a1-46f1-b19a-a1af9884a3c5",
"amount_limit": 2000,
"created_at": "2023-05-29T11:50:03",
"limit_type": "daily",
"request_key": "155afa76-4e80-4a11-917a-34d48e39325c",
"request_status": "pending_approval",
"routine_key": null
},
{
"account_key": "dc94d45c-11a1-46f1-b19a-a1af9884a3c5",
"amount_limit": 1000,
"created_at": "2023-05-29T11:50:03",
"limit_type": "nightly",
"request_key": "805a457d-307d-46c5-8dce-e98e309a3380",
"request_status": "pending_approval",
"routine_key": null
},
{
"account_key": "dc94d45c-11a1-46f1-b19a-a1af9884a3c5",
"amount_limit": 1500,
"created_at": "2023-05-29T11:50:03",
"limit_type": "self_daily",
"request_key": "7cd413ab-fc78-41e6-ab27-206f69e2e294",
"request_status": "pending_approval",
"routine_key": null
},
{
"account_key": "dc94d45c-11a1-46f1-b19a-a1af9884a3c5",
"amount_limit": 500,
"created_at": "2023-05-29T11:50:03",
"limit_type": "self_nightly",
"request_key": "febe9087-1eba-4169-a63e-29e546aaf874",
"request_status": "pending_approval",
"routine_key": null
}
]
}
STATUS
403
Response Body: User does not have credentials
{
"title": "Unauthorized",
"description": "User is not allowed to do this transaction",
"translation": "Usuário não tem autorização para fazer essa transação",
"code": "PIT000001"
}