POST AdvCampaign/ApplyForRefund
申请退款
Request Information
URI Parameters
None.
Body Parameters
订单参数(只需要ID)
ApplyForReturnPars| Name | Description | Type | Additional information |
|---|---|---|---|
| apply_id |
订单ID |
integer |
None. |
| order_no |
订单号 |
string |
None. |
| logistics_type |
物流类型 |
integer |
None. |
| logistics_no |
运单号 |
string |
None. |
| order_status |
订单状态 |
integer |
None. |
| logistics_name |
物流名称 |
string |
None. |
Request Formats
application/json, text/json
Sample:
{
"code": "200",
"data": {
"apply_id": 1,
"order_no": "sample string 2",
"logistics_type": 3,
"logistics_no": "sample string 4",
"order_status": 5,
"logistics_name": "sample string 6"
},
"msg": null
}
application/xml, text/xml
Sample:
<ApplyForReturnPars xmlns:i="http://www.w3.org/2001/XMLSchema-instance" xmlns="http://schemas.datacontract.org/2004/07/HL.Basis.Web.Models.Parameter"> <apply_id>1</apply_id> <logistics_name>sample string 6</logistics_name> <logistics_no>sample string 4</logistics_no> <logistics_type>3</logistics_type> <order_no>sample string 2</order_no> <order_status>5</order_status> </ApplyForReturnPars>
application/x-www-form-urlencoded
Sample:
Sample not available.
Response Information
Resource Description
申请退款
booleanResponse Formats
application/json, text/json
Sample:
{
"code": "200",
"data": true,
"msg": null
}
application/xml, text/xml
Sample:
<boolean xmlns="http://schemas.microsoft.com/2003/10/Serialization/">true</boolean>