GET api/OrderMaster/GetItemOrderLisByInvoiceId?invoiceId={invoiceId}&profileId={profileId}
Request Information
URI Parameters
Name | Description | Type | Additional information |
---|---|---|---|
invoiceId | integer |
Required |
|
profileId | integer |
Required |
Body Parameters
None.
Response Information
Resource Description
Collection of ItemOrderListByInvoiceIdEntityName | Description | Type | Additional information |
---|---|---|---|
Id | integer |
None. |
|
OrderId | integer |
None. |
|
ItemCategoryId | integer |
None. |
|
Count | integer |
None. |
|
rate | decimal number |
None. |
|
PlateType | string |
None. |
Response Formats
application/json, text/json
Sample:
[ { "Id": 1, "OrderId": 2, "ItemCategoryId": 3, "Count": 4, "rate": 5.0, "PlateType": "sample string 6" }, { "Id": 1, "OrderId": 2, "ItemCategoryId": 3, "Count": 4, "rate": 5.0, "PlateType": "sample string 6" } ]
application/xml, text/xml
Sample:
<ArrayOfItemOrderListByInvoiceIdEntity xmlns:i="http://www.w3.org/2001/XMLSchema-instance" xmlns="http://schemas.datacontract.org/2004/07/VCINT_API.Models"> <ItemOrderListByInvoiceIdEntity> <Count>4</Count> <Id>1</Id> <ItemCategoryId>3</ItemCategoryId> <OrderId>2</OrderId> <PlateType>sample string 6</PlateType> <rate>5</rate> </ItemOrderListByInvoiceIdEntity> <ItemOrderListByInvoiceIdEntity> <Count>4</Count> <Id>1</Id> <ItemCategoryId>3</ItemCategoryId> <OrderId>2</OrderId> <PlateType>sample string 6</PlateType> <rate>5</rate> </ItemOrderListByInvoiceIdEntity> </ArrayOfItemOrderListByInvoiceIdEntity>