跳到主要内容

查询账户冻结记录

Request

ENDPOINT
/account/ACCOUNT_KEY/account_block_records
MÉTODO
GET

路径参数

字段类型描述
ACCOUNT_KEYUUID要查询详情的账户密钥

查询参数

字段类型描述字符数
block_order_statuses *enumerator冻结指令状态block_order_statuses 枚举值

block_order_statuses 枚举值

枚举值描述
pending冻结指令待处理
open冻结指令已开放
concluded冻结指令已完成

Response

STATUS
200
Response 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_amountfloat账户冻结金额-
block_orderobject冻结指令详情block_order 对象

block_order 对象

字段类型描述最大字符数
block_order_protocolstring冻结指令协议编号-
block_order_sequencestring冻结指令序列号-
case_numberstring案件编号-
court_codestring法院代码-
defendant_document_numberstring被告证件号码14
institution_document_numberstring or null机构证件号码(如适用)-
lawsuit_author_namestring诉讼作者姓名-
lawsuit_typeenumerator诉讼类型lawsuit_type 枚举值
protocol_datetimestring协议日期和时间20
requested_amountfloat申请金额-
requester_judgestring申请法官姓名-

lawsuit_type 枚举值

枚举值描述
labor劳动纠纷
civil民事诉讼
criminal刑事诉讼
tax税务纠纷
family家事纠纷
STATUS
404
Response 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
403
Response Body:用户无权限
{
"title": "Permission Validator Error",
"description": "Selected agent do not own this item.",
"translation": "O agente selecionado não é dono do item.",
"code": "QIT000005"
}