取消订单--cancelOrder
POST
/default/svc/web-service
cancelOrder
请求参数
Body 参数application/xml
reference_no
string
必需
type
enum<integer> | enum<null>
单号类型
枚举值:
123
默认值:
null
示例
<?xml version="1.0" encoding="UTF-8"?>
<SOAP-ENV:Envelope xmlns:SOAP-ENV="http://schemas.xmlsoap.org/soap/envelope/" xmlns:ns1="http://www.example.org/Ec/">
<SOAP-ENV:Body>
<ns1:callService>
<paramsJson>
<![CDATA[
{"reference_no":"CR36600006"}
]]>
</paramsJson>
<appToken>{{appToken}}</appToken>
<appKey>{{appKey}}</appKey>
<service>cancelOrder</service>
</ns1:callService>
</SOAP-ENV:Body>
</SOAP-ENV:Envelope>
示例代码
Shell
JavaScript
Java
Swift
Go
PHP
Python
HTTP
C
C#
Objective-C
Ruby
OCaml
Dart
R
请求示例请求示例
Shell
JavaScript
Java
Swift
curl --location --request POST 'http://8.129.234.2:8085/default/svc/web-service' \
--header 'Content-Type: application/xml' \
--data-raw '<?xml version="1.0" encoding="UTF-8"?>
<SOAP-ENV:Envelope xmlns:SOAP-ENV="http://schemas.xmlsoap.org/soap/envelope/" xmlns:ns1="http://www.example.org/Ec/">
<SOAP-ENV:Body>
<ns1:callService>
<paramsJson>
<![CDATA[
{"reference_no":"CR36600006"}
]]>
</paramsJson>
<appToken>a106eb7a118d78f92cabbc91586caa84</appToken>
<appKey>a106eb7a118d78f92cabbc91586caa8401ac591bb285b42966f035d8d49a7b5c</appKey>
<service>cancelOrder</service>
</ns1:callService>
</SOAP-ENV:Body>
</SOAP-ENV:Envelope>'
返回响应
🟢200成功
application/xml
Body
ask
enum<string>
请求结果状态
枚举值:
SuccessFailure
message
string
请求结果提示信息
reference_no
string
请求单号
type
string | null
单号类型
示例值:
pdf
time_cost(s)
string
耗时,单位秒
示例
<?xml version="1.0" encoding="UTF-8"?>
<SOAP-ENV:Envelope xmlns:SOAP-ENV="http://schemas.xmlsoap.org/soap/envelope/" xmlns:ns1="http://www.example.org/Ec/">
<SOAP-ENV:Body>
<ns1:callServiceResponse>
<response>{"ask":"Success","message":"Success","reference_no":"CR36600006","type":null,"time_cost(s)":3.667200088501}</response>
</ns1:callServiceResponse>
</SOAP-ENV:Body>
</SOAP-ENV:Envelope>
🟢200失败
修改于 2025-01-02 02:20:58