查询 Pix 限额申请
Request
ENDPOINT
/baas/pix/limits_requestMÉTODO
GETQuery String
| 字段 | 类型 | 描述 | 字符数 |
|---|---|---|---|
account_key | string | QIConta 账户标识键 | 36 |
request_status | string | 限额申请状态。有效状态:"pending_approval"、"approved"、"rejected"、"executed"。可以以列表形式发送,例如:"pending_approval,approved" | |
page | integer | 查询页码 | - |
page_size | integer | 每页条目数 | - |
Response
STATUS
200Response 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
403Response Body: 用户没有凭据
{
"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"
}