POST
api/v1/OrderApprove
Request Information
Body Parameters
OrderReturnExchangeRequest| Name | Description | Type | Additional information |
|---|---|---|---|
| OrderNumber | string |
None. |
|
| OrderGUID | globally unique identifier |
None. |
|
| OrderStatusID | integer |
None. |
|
| ClientID | integer |
None. |
|
| SellerID | integer |
None. |
Request Formats
application/json, text/json
{
"OrderNumber": "sample string 1",
"OrderGUID": "1f2aaf2c-a21b-4394-af6a-aefcfc3544b1",
"OrderStatusID": 3,
"ClientID": 4,
"SellerID": 5
}
text/html
{"OrderNumber":"sample string 1","OrderGUID":"1f2aaf2c-a21b-4394-af6a-aefcfc3544b1","OrderStatusID":3,"ClientID":4,"SellerID":5}
application/xml, text/xml
<OrderReturnExchangeRequest xmlns:i="http://www.w3.org/2001/XMLSchema-instance" xmlns="http://schemas.datacontract.org/2004/07/FDCMSAdminAPI.Models.Order"> <ClientID>4</ClientID> <OrderGUID>1f2aaf2c-a21b-4394-af6a-aefcfc3544b1</OrderGUID> <OrderNumber>sample string 1</OrderNumber> <OrderStatusID>3</OrderStatusID> <SellerID>5</SellerID> </OrderReturnExchangeRequest>
application/x-www-form-urlencoded
Sample not available.
Response Information
Description:
Return type: string
Response Formats
application/json, text/json, text/html
"sample string 1"
application/xml, text/xml
<string xmlns="http://schemas.microsoft.com/2003/10/Serialization/">sample string 1</string>
