GET api/Order/OrderItemsbyOrderNo?OrderNo={OrderNo}
Request Information
URI Parameters
Name | Description | Type | Additional information |
---|---|---|---|
OrderNo | string |
Required |
Body Parameters
None.
Response Information
Resource Description
Collection of tblOrderItemName | Description | Type | Additional information |
---|---|---|---|
Id | integer |
None. |
|
Order_id | string |
None. |
|
Product_Id | integer |
None. |
|
Product_Price | decimal number |
None. |
|
Product_Qty | integer |
None. |
|
Product_Wt | decimal number |
None. |
|
Product_Name | string |
None. |
|
Comment | string |
None. |
|
InsertedDate | string |
None. |
|
UpdatedDate | string |
None. |
|
Product_Pieces | string |
None. |
|
Subtotal | decimal number |
None. |
|
VendorPrice | decimal number |
None. |
Response Formats
application/json, text/json
Sample:
[ { "Id": 1, "Order_id": "sample string 2", "Product_Id": 1, "Product_Price": 1.1, "Product_Qty": 1, "Product_Wt": 1.1, "Product_Name": "sample string 3", "Comment": "sample string 4", "InsertedDate": "sample string 5", "UpdatedDate": "sample string 6", "Product_Pieces": "sample string 7", "Subtotal": 1.1, "VendorPrice": 1.1 }, { "Id": 1, "Order_id": "sample string 2", "Product_Id": 1, "Product_Price": 1.1, "Product_Qty": 1, "Product_Wt": 1.1, "Product_Name": "sample string 3", "Comment": "sample string 4", "InsertedDate": "sample string 5", "UpdatedDate": "sample string 6", "Product_Pieces": "sample string 7", "Subtotal": 1.1, "VendorPrice": 1.1 } ]
application/xml, text/xml
Sample:
<ArrayOftblOrderItem xmlns:i="http://www.w3.org/2001/XMLSchema-instance" xmlns="http://schemas.datacontract.org/2004/07/DataAccessLayer"> <tblOrderItem> <Comment>sample string 4</Comment> <Id>1</Id> <InsertedDate>sample string 5</InsertedDate> <Order_id>sample string 2</Order_id> <Product_Id>1</Product_Id> <Product_Name>sample string 3</Product_Name> <Product_Pieces>sample string 7</Product_Pieces> <Product_Price>1.1</Product_Price> <Product_Qty>1</Product_Qty> <Product_Wt>1.1</Product_Wt> <Subtotal>1.1</Subtotal> <UpdatedDate>sample string 6</UpdatedDate> <VendorPrice>1.1</VendorPrice> </tblOrderItem> <tblOrderItem> <Comment>sample string 4</Comment> <Id>1</Id> <InsertedDate>sample string 5</InsertedDate> <Order_id>sample string 2</Order_id> <Product_Id>1</Product_Id> <Product_Name>sample string 3</Product_Name> <Product_Pieces>sample string 7</Product_Pieces> <Product_Price>1.1</Product_Price> <Product_Qty>1</Product_Qty> <Product_Wt>1.1</Product_Wt> <Subtotal>1.1</Subtotal> <UpdatedDate>sample string 6</UpdatedDate> <VendorPrice>1.1</VendorPrice> </tblOrderItem> </ArrayOftblOrderItem>