GET api/Order/GetPendingDispatch?securityKey={securityKey}
Request Information
URI Parameters
| Name | Description | Type | Additional information |
|---|---|---|---|
| securityKey | string |
Required |
Body Parameters
None.
Response Information
Resource Description
Collection of OrderDetail| Name | Description | Type | Additional information |
|---|---|---|---|
| SecurityKey | string |
None. |
|
| OrderDetailId | integer |
None. |
|
| OrderId | integer |
None. |
|
| MemberId | integer |
None. |
|
| ProductId | integer |
None. |
|
| ProductName | string |
None. |
|
| Qty | integer |
None. |
|
| StockInHand | integer |
None. |
|
| Amount | decimal number |
None. |
|
| Rate | decimal number |
None. |
|
| OrderStatus | OrderStatus |
None. |
Response Formats
application/json, text/json
Sample:
[
{
"SecurityKey": "sample string 1",
"OrderDetailId": 2,
"OrderId": 3,
"MemberId": 4,
"ProductId": 5,
"ProductName": "sample string 6",
"Qty": 7,
"StockInHand": 8,
"Amount": 9.0,
"Rate": 10.0,
"OrderStatus": 1
},
{
"SecurityKey": "sample string 1",
"OrderDetailId": 2,
"OrderId": 3,
"MemberId": 4,
"ProductId": 5,
"ProductName": "sample string 6",
"Qty": 7,
"StockInHand": 8,
"Amount": 9.0,
"Rate": 10.0,
"OrderStatus": 1
}
]
text/html
Sample:
[{"SecurityKey":"sample string 1","OrderDetailId":2,"OrderId":3,"MemberId":4,"ProductId":5,"ProductName":"sample string 6","Qty":7,"StockInHand":8,"Amount":9.0,"Rate":10.0,"OrderStatus":1},{"SecurityKey":"sample string 1","OrderDetailId":2,"OrderId":3,"MemberId":4,"ProductId":5,"ProductName":"sample string 6","Qty":7,"StockInHand":8,"Amount":9.0,"Rate":10.0,"OrderStatus":1}]
application/xml, text/xml
Sample:
<ArrayOfOrderDetail xmlns:i="http://www.w3.org/2001/XMLSchema-instance" xmlns="http://schemas.datacontract.org/2004/07/Dnyanved.Core.Model">
<OrderDetail>
<Amount>9</Amount>
<MemberId>4</MemberId>
<OrderDetailId>2</OrderDetailId>
<OrderId>3</OrderId>
<OrderStatus>New</OrderStatus>
<ProductId>5</ProductId>
<ProductName>sample string 6</ProductName>
<Qty>7</Qty>
<Rate>10</Rate>
<SecurityKey>sample string 1</SecurityKey>
<StockInHand>8</StockInHand>
</OrderDetail>
<OrderDetail>
<Amount>9</Amount>
<MemberId>4</MemberId>
<OrderDetailId>2</OrderDetailId>
<OrderId>3</OrderId>
<OrderStatus>New</OrderStatus>
<ProductId>5</ProductId>
<ProductName>sample string 6</ProductName>
<Qty>7</Qty>
<Rate>10</Rate>
<SecurityKey>sample string 1</SecurityKey>
<StockInHand>8</StockInHand>
</OrderDetail>
</ArrayOfOrderDetail>