POST MarkOrderAttended
Marks an order attended for a colection.
Request Information
Parameters
| Name | Description | Additional information |
|---|---|---|
| request |
Define this parameter in the request body. |
Request body formats
application/json, text/json
Sample:
{
"OrderNo": 1,
"Criteria": [
{
"PerformanceId": 1,
"PriceTypeId": 2,
"ZoneNo": 3,
"Count": 4
},
{
"PerformanceId": 1,
"PriceTypeId": 2,
"ZoneNo": 3,
"Count": 4
}
],
"DeviceName": "sample string 2",
"UserId": "sample string 3"
}
application/xml, text/xml
Sample:
<MarkOrderAttendedRequest xmlns:xsd="http://www.w3.org/2001/XMLSchema" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance">
<OrderNo>1</OrderNo>
<Criteria>
<Criterion>
<PerformanceId>1</PerformanceId>
<PriceTypeId>2</PriceTypeId>
<ZoneNo>3</ZoneNo>
<Count>4</Count>
</Criterion>
<Criterion>
<PerformanceId>1</PerformanceId>
<PriceTypeId>2</PriceTypeId>
<ZoneNo>3</ZoneNo>
<Count>4</Count>
</Criterion>
</Criteria>
<DeviceName>sample string 2</DeviceName>
<UserId>sample string 3</UserId>
</MarkOrderAttendedRequest>
Response Information
Response body formats
application/json, text/json
Sample:
"sample string 1"
application/xml, text/xml
Sample:
<string>sample string 1</string>