查询账户冻结记录
Request
ENDPOINT
/account/ACCOUNT_KEY/account_block_records MÉTODO
GET路径参数
| 字段 | 类型 | 描述 |
|---|---|---|
ACCOUNT_KEY | UUID | 要查询详情的账户密钥 |
查询参数
| 字段 | 类型 | 描述 | 字符数 |
|---|---|---|---|
block_order_statuses * | enumerator | 冻结指令状态 | block_order_statuses 枚举值 |
block_order_statuses 枚举值
| 枚举值 | 描述 |
|---|---|
| pending | 冻结指令待处理 |
| open | 冻结指令已开放 |
| concluded | 冻结指令已完成 |
Response
STATUS
200Response Body
{
[
{
"account_blocked_amount": 1000,
"block_order": {
"block_order_protocol": "100000000",
"block_order_sequence": "00001",
"case_number": "0000000000000",
"court_code": "00000",
"defendant_document_number": "00000000000000",
"institution_document_number": null,
"lawsuit_author_name": "NOME DO JUIZ",
"lawsuit_type": "labor",
"protocol_datetime": "2025-04-28T08:34:16Z",
"requested_amount": 1000,
"requester_judge": "JUIZ DE DIREITO"
}
}
]
}
响应体参数
| 字段 | 类型 | 描述 | 最大字符数 |
|---|---|---|---|
account_blocked_amount | float | 账户冻结金额 | - |
block_order | object | 冻结指令详情 | block_order 对象 |
block_order 对象
| 字段 | 类型 | 描述 | 最大字符数 |
|---|---|---|---|
block_order_protocol | string | 冻结指令协议编号 | - |
block_order_sequence | string | 冻结指令序列号 | - |
case_number | string | 案件编号 | - |
court_code | string | 法院代码 | - |
defendant_document_number | string | 被告证件号码 | 14 |
institution_document_number | string or null | 机构证件号码(如适用) | - |
lawsuit_author_name | string | 诉讼作者姓名 | - |
lawsuit_type | enumerator | 诉讼类型 | lawsuit_type 枚举值 |
protocol_datetime | string | 协议日期和时间 | 20 |
requested_amount | float | 申请金额 | - |
requester_judge | string | 申请法官姓名 | - |
lawsuit_type 枚举值
| 枚举值 | 描述 |
|---|---|
labor | 劳动纠纷 |
civil | 民事诉讼 |
criminal | 刑事诉讼 |
tax | 税务纠纷 |
family | 家事纠纷 |
STATUS
404Response Body:账户未找到
{
"title": "Not Found",
"description": "Account not found for the given key 3e4b8746-da58-4799-bcd0-063326428d3f",
"translation": "Conta não encontrada para a seguinte chave 3e4b8746-da58-4799-bcd0-063326428d3f",
"code": "ACC000006"
}
STATUS
403Response Body:用户无权限
{
"title": "Permission Validator Error",
"description": "Selected agent do not own this item.",
"translation": "O agente selecionado não é dono do item.",
"code": "QIT000005"
}