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());
ITopClient client = new DefaultTopClient(url, appkey, secret);
AlibabaKongurBillGetRequest req = new AlibabaKongurBillGetRequest();
AlibabaKongurBillGetRequest.BillStatementVoDomain obj1 = new AlibabaKongurBillGetRequest.BillStatementVoDomain();
List<AlibabaKongurBillGetRequest.EntrustBillVoDomain> list3 = new List<AlibabaKongurBillGetRequest.EntrustBillVoDomain>();
AlibabaKongurBillGetRequest.EntrustBillVoDomain obj4 = new AlibabaKongurBillGetRequest.EntrustBillVoDomain();
list3.Add(obj4);
obj4.DominationProcess = "first";
obj4.SettlementCurrency = "CNY";
obj4.DominationFee = "500.00";
obj4.CompromiseSuccessFee = "500.00";
obj4.CompromiseFeedbackFee = "500.00";
obj4.CompromiseContactFee = "500.00";
obj4.RiskAgentFeePrediction = "500.00";
obj4.ManageFee = "500.00";
obj4.UrgentFee = "500.00";
obj4.EntrustFixedFee = "500.00";
obj4.SettlementType = "(settle_type_price";
obj4.EntrustItem = "entrust_item_entrust_court";
obj4.SettlementCycle = "settle_cycle_standard_single";
obj4.BillRelationId = 101L;
obj4.SuitId = 354177350425L;
obj1.BillList= list3;
obj1.CallingTime = 1508729472347L;
obj1.StmtNo = "SJS20180308000001";
req.BillStatementVo_ = obj1;
AlibabaKongurBillGetResponse rsp = client.Execute(req);
Console.WriteLine(rsp.Body);
$c = new TopClient;
$c->appkey = $appkey;
$c->secretKey = $secret;
$req = new AlibabaKongurBillGetRequest;
$billStatementVo = new BillStatementVo;
$billList = new EntrustBillVo;
$billList->domination_process="first";
$billList->settlement_currency="CNY";
$billList->domination_fee="500.00";
$billList->compromise_success_fee="500.00";
$billList->compromise_feedback_fee="500.00";
$billList->compromise_contact_fee="500.00";
$billList->risk_agent_fee_prediction="500.00";
$billList->manage_fee="500.00";
$billList->urgent_fee="500.00";
$billList->entrust_fixed_fee="500.00";
$billList->settlement_type="(settle_type_price";
$billList->entrust_item="entrust_item_entrust_court";
$billList->settlement_cycle="settle_cycle_standard_single";
$billList->bill_relation_id="101";
$billList->suit_id="354177350425";
$billStatementVo->billList = $billList;
$billStatementVo->calling_time="1508729472347";
$billStatementVo->stmt_no="SJS20180308000001";
$req->setBillStatementVo(json_encode($billStatementVo));
$resp = $c->execute($req);
curl -X POST 'http://gw.api.taobao.com/router/rest' \
-H 'Content-Type:application/x-www-form-urlencoded;charset=utf-8' \
-d 'app_key=12129701' \
-d 'format=json' \
-d 'method=qimen.alibaba.kongur.bill.get' \
-d 'partner_id=apidoc' \
-d 'sign=9462857464A320C75B1738CD85DB5D73' \
-d 'sign_method=hmac' \
-d 'timestamp=2025-06-26+22%3A46%3A40' \
-d 'v=2.0' \
-d 'billStatementVo=null'
# -*- coding: utf-8 -*-
import top.api
req=top.api.QimenAlibabaKongurBillGetRequest(url,port)
req.set_app_info(top.appinfo(appkey,secret))
req.billStatementVo="数据结构示例JSON格式"
try:
resp= req.getResponse()
print(resp)
except Exception,e:
print(e)
pTopRequest pRequest = alloc_top_request();
pTopResponse pResponse = NULL;
pTaobaoClient pClient = alloc_taobao_client(url, appkey, appsecret);
set_api_name(pRequest,"qimen.alibaba.kongur.bill.get");
add_param(pRequest,"billStatementVo","数据结构JSON示例");
pResponse = top_execute(pClient,pRequest,NULL);
printf("ret code:%d\n",pResponse->code);
if(pResponse->code == 0){
pTopResponseIterator ite = init_response_iterator(pResponse);
pResultItem pResultItem = alloc_result_item();
while(parseNext(ite, pResultItem) == 0){
printf("%s:%s\n",pResultItem->key,pResultItem->value);
}
destroy_response_iterator(ite);
destroy_result_item(pResultItem);
}
destroy_top_request(pRequest);
destroy_top_response(pResponse);
destroy_taobao_client(pClient);
TopClient = require('./topClient').TopClient;
var client = new TopClient({
'appkey': 'appkey',
'appsecret': 'secret',
'REST_URL': 'http://gw.api.taobao.com/router/rest'
});
client.execute('qimen.alibaba.kongur.bill.get', {
'billStatementVo':'数据结构JSON示例'
}, function(error, response) {
if (!error) console.log(response);
else console.log(error);
})