文档中心 > API类目 > 司法开放平台

qimen.alibaba.kongur.bill.get (开放平台向外部供应商推送结算单明细信息)

开放平台向外部供应商推送结算单明细信息

公共参数

请求参数

名称 类型 是否必须 示例值 更多限制 描述
billStatementVo BillStatementVo 可选 结算单外层对象
  • billList
  • EntrustBillVo []
  • 可选
  • 结算单行列表
  • └ dominationProcess
  • String
  • 可选
  • first
  • 管辖程序
  • └ settlementCurrency
  • String
  • 可选
  • CNY
  • 结算费用币种
  • └ dominationFee
  • String
  • 可选
  • 500.00
  • 管辖费用
  • └ compromiseSuccessFee
  • String
  • 可选
  • 500.00
  • 和解成功费用
  • └ compromiseFeedbackFee
  • String
  • 可选
  • 500.00
  • 和解联系且有反馈费用
  • └ compromiseContactFee
  • String
  • 可选
  • 500.00
  • 和解联系费用
  • └ riskAgentFeePrediction
  • String
  • 可选
  • 500.00
  • 风险代理费用(预估)
  • └ manageFee
  • String
  • 可选
  • 500.00
  • 管理费用
  • └ urgentFee
  • String
  • 可选
  • 500.00
  • 加急费用
  • └ entrustFixedFee
  • String
  • 可选
  • 500.00
  • 委托固定费用
  • └ settlementType
  • String
  • 可选
  • (settle_type_price
  • 结算类型
  • └ entrustItem
  • String
  • 可选
  • entrust_item_entrust_court
  • 委托项(多个,逗号分隔)
  • └ settlementCycle
  • String
  • 可选
  • settle_cycle_standard_single
  • 结算周期
  • └ billRelationId
  • Number
  • 可选
  • 101
  • 结算单关系id
  • └ suitId
  • Number
  • 可选
  • 354177350425
  • 案件id
  • └ callingTime
  • Number
  • 可选
  • 1508729472347
  • 接口调用时间
  • └ stmtNo
  • String
  • 可选
  • SJS20180308000001
  • 结算单号

响应参数

名称 类型 示例值 描述
flag String failure 标记(验签时需要,非验签时为固定值success)
sub_code String 1 错误码(验签时需要)
sub_message String 系统错误 错误信息(验签时需要)
errors ResultDataDo [] 错误列表
  • └ errorMsg
  • String
  • 案件id不能为空
  • 错误信息
  • └ returnErrorCode
  • String
  • KU_001000
  • 错误码
  • └ fieldNameEn
  • String
  • suitId
  • 变量英文名
  • └ bizType
  • String
  • other
  • 业务类型
  • └ businessId
  • String
  • 1
  • 业务id
isSuccess Boolean true 接口处理是否成功

请求示例

  • JAVA
  • .NET
  • PHP
  • CURL
  • Python
  • C/C++
  • NodeJS
QimenCloudClient client = new DefaultQimenCloudClient(url, appkey, secret);
AlibabaKongurBillGetRequest req = new AlibabaKongurBillGetRequest();
AlibabaKongurBillGetRequest.BillStatementVo obj1 = new AlibabaKongurBillGetRequest.BillStatementVo();
List<AlibabaKongurBillGetRequest.EntrustBillVo> list3 = new ArrayList<AlibabaKongurBillGetRequest.EntrustBillVo>();
AlibabaKongurBillGetRequest.EntrustBillVo obj4 = new AlibabaKongurBillGetRequest.EntrustBillVo();
list3.add(obj4);
obj4.setDominationProcess("first");
obj4.setSettlementCurrency("CNY");
obj4.setDominationFee("500.00");
obj4.setCompromiseSuccessFee("500.00");
obj4.setCompromiseFeedbackFee("500.00");
obj4.setCompromiseContactFee("500.00");
obj4.setRiskAgentFeePrediction("500.00");
obj4.setManageFee("500.00");
obj4.setUrgentFee("500.00");
obj4.setEntrustFixedFee("500.00");
obj4.setSettlementType("(settle_type_price");
obj4.setEntrustItem("entrust_item_entrust_court");
obj4.setSettlementCycle("settle_cycle_standard_single");
obj4.setBillRelationId(101L);
obj4.setSuitId(354177350425L);
obj1.setBillList(list3);
obj1.setCallingTime(1508729472347L);
obj1.setStmtNo("SJS20180308000001");
req.setBillStatementVo(obj1);
AlibabaKongurBillGetResponse rsp = client.execute(req);
System.out.println(rsp.getBody());

响应示例

  • XML示例
  • JSON示例
<flag>failure</flag>
<sub_code>1</sub_code>
<sub_message>系统错误</sub_message>
<errors>
    <result_data_do>
        <errorMsg>案件id不能为空</errorMsg>
        <returnErrorCode>KU_001000</returnErrorCode>
        <fieldNameEn>suitId</fieldNameEn>
        <bizType>other</bizType>
        <businessId>1</businessId>
    </result_data_do>
</errors>
<isSuccess>true</isSuccess>

异常示例

  • XML示例
  • JSON示例
<error_response>
    <code>50</code>
    <msg>Remote service error</msg>
    <sub_code>isv.invalid-parameter</sub_code>
    <sub_msg>非法参数</sub_msg>
</error_response>

错误码解释

错误码 错误描述 解决方案

API工具

如何获得此API

FAQ

返回
顶部