TaobaoClient client = new DefaultTaobaoClient(url, appkey, secret);
AlibabaAlihealthDoctorLeshuiApplyNotifyRequest req = new AlibabaAlihealthDoctorLeshuiApplyNotifyRequest();
AlibabaAlihealthDoctorLeshuiApplyNotifyRequest.ApplyTaxNoticeRequest obj1 = new AlibabaAlihealthDoctorLeshuiApplyNotifyRequest.ApplyTaxNoticeRequest();
obj1.setAction("applyFormAuditComplete");
obj1.setAppKey("12345678");
obj1.setSource("leshui");
obj1.setApplyBatchNum("98ui945sd87ef6");
obj1.setExtInfo("{}");
req.setParam(obj1);
AlibabaAlihealthDoctorLeshuiApplyNotifyResponse rsp = client.execute(req);
System.out.println(rsp.getBody());
ITopClient client = new DefaultTopClient(url, appkey, secret);
AlibabaAlihealthDoctorLeshuiApplyNotifyRequest req = new AlibabaAlihealthDoctorLeshuiApplyNotifyRequest();
AlibabaAlihealthDoctorLeshuiApplyNotifyRequest.ApplyTaxNoticeRequestDomain obj1 = new AlibabaAlihealthDoctorLeshuiApplyNotifyRequest.ApplyTaxNoticeRequestDomain();
obj1.Action = "applyFormAuditComplete";
obj1.AppKey = "12345678";
obj1.Source = "leshui";
obj1.ApplyBatchNum = "98ui945sd87ef6";
obj1.ExtInfo = "{}";
req.Param_ = obj1;
AlibabaAlihealthDoctorLeshuiApplyNotifyResponse rsp = client.Execute(req);
Console.WriteLine(rsp.Body);
$c = new TopClient;
$c->appkey = $appkey;
$c->secretKey = $secret;
$req = new AlibabaAlihealthDoctorLeshuiApplyNotifyRequest;
$param = new ApplyTaxNoticeRequest;
$param->action="applyFormAuditComplete";
$param->app_key="12345678";
$param->source="leshui";
$param->apply_batch_num="98ui945sd87ef6";
$param->ext_info="{}";
$req->setParam(json_encode($param));
$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=alibaba.alihealth.doctor.leshui.apply.notify' \
-d 'partner_id=apidoc' \
-d 'sign=405B15F52F47E5D3003C0D6E96E9D112' \
-d 'sign_method=hmac' \
-d 'timestamp=2025-05-22+19%3A04%3A03' \
-d 'v=2.0' \
-d 'param=%7B%5C%22action%5C%22%3A+%5C%22applyFormAuditComplete%5C%22%2C+%5C%22app_key%5C%22%3A+%5C%2212345678%5C%22%2C+%5C%22source%5C%22%3A+%5C%22leshui%5C%22%2C+%5C%22apply_batch_num%5C%22%3A+%5C%2298ui945sd87ef6%5C%22%2C+%5C%22ext_info%5C%22%3A+%5C%22%7B%7D%5C%22%7D'
# -*- coding: utf-8 -*-
import top.api
req=top.api.AlibabaAlihealthDoctorLeshuiApplyNotifyRequest(url,port)
req.set_app_info(top.appinfo(appkey,secret))
req.param="{\"action\": \"applyFormAuditComplete\", \"app_key\": \"12345678\", \"source\": \"leshui\", \"apply_batch_num\": \"98ui945sd87ef6\", \"ext_info\": \"{}\"}"
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,"alibaba.alihealth.doctor.leshui.apply.notify");
add_param(pRequest,"param","数据结构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('alibaba.alihealth.doctor.leshui.apply.notify', {
'param':'数据结构JSON示例'
}, function(error, response) {
if (!error) console.log(response);
else console.log(error);
})