POST api/Ecommerce/ResendOrder
Request Information
URI Parameters
None.
Body Parameters
ShopOrderResendRequestName | Description | Type | Additional information |
---|---|---|---|
OrderNumber | string |
Required |
|
ShopID | integer |
Required |
|
OrderID | integer |
Required |
Request Formats
application/json, text/json
Sample:
{ "OrderNumber": "sample string 1", "ShopID": 2, "OrderID": 3 }
application/xml, text/xml
Sample:
<EcommerceModels.ShopOrderResendRequest xmlns:i="http://www.w3.org/2001/XMLSchema-instance" xmlns="http://schemas.datacontract.org/2004/07/QatarPay.Models"> <OrderID>3</OrderID> <OrderNumber>sample string 1</OrderNumber> <ShopID>2</ShopID> </EcommerceModels.ShopOrderResendRequest>
application/x-www-form-urlencoded
Sample:
Sample not available.
Response Information
Resource Description
OrderResponseName | Description | Type | Additional information |
---|---|---|---|
OrderPaymentLink | string |
None. |
|
OrderID | integer |
None. |
|
IsArchive | boolean |
None. |
|
success | boolean |
None. |
|
code | string |
None. |
|
message | string |
None. |
|
errors | Collection of string |
None. |
Response Formats
application/json, text/json
Sample:
{ "OrderPaymentLink": "sample string 1", "OrderID": 2, "IsArchive": true, "success": true, "code": "sample string 5", "message": "sample string 6", "errors": [ "sample string 1", "sample string 2" ] }
application/xml, text/xml
Sample:
<EcommerceModels.OrderResponse xmlns:i="http://www.w3.org/2001/XMLSchema-instance" xmlns="http://schemas.datacontract.org/2004/07/QatarPay.Models"> <code>sample string 5</code> <errors xmlns:d2p1="http://schemas.microsoft.com/2003/10/Serialization/Arrays"> <d2p1:string>sample string 1</d2p1:string> <d2p1:string>sample string 2</d2p1:string> </errors> <message>sample string 6</message> <success>true</success> <IsArchive>true</IsArchive> <OrderID>2</OrderID> <OrderPaymentLink>sample string 1</OrderPaymentLink> </EcommerceModels.OrderResponse>