POST api/Order/GetExchangList
No documentation available.
Request Information
Parameters
| Name | Description | Additional information |
|---|---|---|
| para | No documentation available. |
Define this parameter in the request body. |
Request body formats
application/json, text/json
Sample:
{
"uid": 1,
"sign": "sample string 2"
}
application/xml, text/xml
Sample:
<getCommonParamter xmlns:i="http://www.w3.org/2001/XMLSchema-instance" xmlns="http://schemas.datacontract.org/2004/07/Game.Api.Controllers"> <sign>sample string 2</sign> <uid>1</uid> </getCommonParamter>
application/x-www-form-urlencoded
Sample:
Sample not available.
Response Information
Response body formats
application/json, text/json
Sample:
{
"rStatus": 1,
"msg": "sample string 2",
"Data": [
{
"GoodsID": 1,
"gName": "sample string 2"
},
{
"GoodsID": 1,
"gName": "sample string 2"
},
{
"GoodsID": 1,
"gName": "sample string 2"
}
]
}
application/xml, text/xml
Sample:
<retExchangeList xmlns:i="http://www.w3.org/2001/XMLSchema-instance" xmlns="http://schemas.datacontract.org/2004/07/Game.Api.Controllers">
<Data>
<exDataList>
<GoodsID>1</GoodsID>
<gName>sample string 2</gName>
</exDataList>
<exDataList>
<GoodsID>1</GoodsID>
<gName>sample string 2</gName>
</exDataList>
<exDataList>
<GoodsID>1</GoodsID>
<gName>sample string 2</gName>
</exDataList>
</Data>
<msg>sample string 2</msg>
<rStatus>1</rStatus>
</retExchangeList>