POST api/OrderManagement/OmnipayOrderResync
Request Information
URI Parameters
None.
Body Parameters
OrderRePushRequest| Name | Description | Type | Additional information |
|---|---|---|---|
| Data | Collection of OrderRePushModel |
None. |
Request Formats
application/json, text/json
Sample:
{
"Data": [
{
"contentId": 1,
"businessId": 2,
"totalAmount": 3.0,
"inventoryId": 4,
"userId": 5,
"paymentTypeId": 6,
"paymentDueDate": "sample string 7"
},
{
"contentId": 1,
"businessId": 2,
"totalAmount": 3.0,
"inventoryId": 4,
"userId": 5,
"paymentTypeId": 6,
"paymentDueDate": "sample string 7"
}
]
}
application/xml, text/xml
Sample:
<OrderRePushRequest xmlns:i="http://www.w3.org/2001/XMLSchema-instance" xmlns="http://schemas.datacontract.org/2004/07/BOPWAAPI.Model">
<Data>
<OrderRePushModel>
<businessId>2</businessId>
<contentId>1</contentId>
<inventoryId>4</inventoryId>
<paymentDueDate>sample string 7</paymentDueDate>
<paymentTypeId>6</paymentTypeId>
<totalAmount>3</totalAmount>
<userId>5</userId>
</OrderRePushModel>
<OrderRePushModel>
<businessId>2</businessId>
<contentId>1</contentId>
<inventoryId>4</inventoryId>
<paymentDueDate>sample string 7</paymentDueDate>
<paymentTypeId>6</paymentTypeId>
<totalAmount>3</totalAmount>
<userId>5</userId>
</OrderRePushModel>
</Data>
</OrderRePushRequest>
application/x-www-form-urlencoded
Sample:
Sample not available.
Response Information
Resource Description
IHttpActionResultNone.
Response Formats
application/json, text/json, application/xml, text/xml
Sample:
Sample not available.