POST AdvCampaign/ApplyForReturnRefundInfo
获取退货信息
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
获取退货信息
ApplyForReturnResult| Name | Description | Type | Additional information |
|---|---|---|---|
| id |
主键 |
integer |
None. |
| order_no |
订单号 |
string |
None. |
| logistics_no |
运单号 |
string |
None. |
| logistics_type |
运单类型 |
integer |
None. |
| RefundDate |
退款日期 |
date |
None. |
| Refund_refund_fee |
退款金额 |
decimal number |
None. |
| logistics_name |
物流公司名称 |
string |
None. |
Response Formats
application/json, text/json
Sample:
{
"code": "200",
"data": {
"id": 1,
"order_no": "sample string 2",
"logistics_no": "sample string 3",
"logistics_type": 4,
"RefundDate": "2025-12-10T11:20:48.3667959+08:00",
"Refund_refund_fee": 6.1,
"logistics_name": "sample string 7"
},
"msg": null
}
application/xml, text/xml
Sample:
<ApplyForReturnResult xmlns:i="http://www.w3.org/2001/XMLSchema-instance" xmlns="http://schemas.datacontract.org/2004/07/HL.Basis.Web.Models.Result"> <RefundDate>2025-12-10T11:20:48.3667959+08:00</RefundDate> <Refund_refund_fee>6.1</Refund_refund_fee> <id>1</id> <logistics_name>sample string 7</logistics_name> <logistics_no>sample string 3</logistics_no> <logistics_type>4</logistics_type> <order_no>sample string 2</order_no> </ApplyForReturnResult>