POST
api/v1/OrderApprove
Request Information
Body Parameters
OrderReturnExchangeRequestName | 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": "92fe1def-2005-4ed5-a667-43a6b2d2e8b8", "OrderStatusID": 3, "ClientID": 4, "SellerID": 5 }
text/html
{"OrderNumber":"sample string 1","OrderGUID":"92fe1def-2005-4ed5-a667-43a6b2d2e8b8","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>92fe1def-2005-4ed5-a667-43a6b2d2e8b8</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>