GET api/OrderMaster/GetItemOrderList?flag={flag}&profileId={profileId}&itemCategoryId={itemCategoryId}

Request Information

URI Parameters

NameDescriptionTypeAdditional information
flag

string

Required

profileId

integer

Required

itemCategoryId

integer

Required

Body Parameters

None.

Response Information

Resource Description

Collection of ItemOrderListEntity
NameDescriptionTypeAdditional information
Id

integer

None.

ItemCategoryId

integer

None.

Item

string

None.

HalfRate

string

None.

HalfRateWT

string

None.

FullRate

string

None.

FullRateWT

string

None.

ImageURL

string

None.

ItemNo

string

None.

Response Formats

application/json, text/json

Sample:
[
  {
    "Id": 1,
    "ItemCategoryId": 2,
    "Item": "sample string 3",
    "HalfRate": "sample string 4",
    "HalfRateWT": "sample string 5",
    "FullRate": "sample string 6",
    "FullRateWT": "sample string 7",
    "ImageURL": "sample string 8",
    "ItemNo": "sample string 9"
  },
  {
    "Id": 1,
    "ItemCategoryId": 2,
    "Item": "sample string 3",
    "HalfRate": "sample string 4",
    "HalfRateWT": "sample string 5",
    "FullRate": "sample string 6",
    "FullRateWT": "sample string 7",
    "ImageURL": "sample string 8",
    "ItemNo": "sample string 9"
  }
]

application/xml, text/xml

Sample:
<ArrayOfItemOrderListEntity xmlns:i="http://www.w3.org/2001/XMLSchema-instance" xmlns="http://schemas.datacontract.org/2004/07/VCINT_API.Models">
  <ItemOrderListEntity>
    <FullRate>sample string 6</FullRate>
    <FullRateWT>sample string 7</FullRateWT>
    <HalfRate>sample string 4</HalfRate>
    <HalfRateWT>sample string 5</HalfRateWT>
    <Id>1</Id>
    <ImageURL>sample string 8</ImageURL>
    <Item>sample string 3</Item>
    <ItemCategoryId>2</ItemCategoryId>
    <ItemNo>sample string 9</ItemNo>
  </ItemOrderListEntity>
  <ItemOrderListEntity>
    <FullRate>sample string 6</FullRate>
    <FullRateWT>sample string 7</FullRateWT>
    <HalfRate>sample string 4</HalfRate>
    <HalfRateWT>sample string 5</HalfRateWT>
    <Id>1</Id>
    <ImageURL>sample string 8</ImageURL>
    <Item>sample string 3</Item>
    <ItemCategoryId>2</ItemCategoryId>
    <ItemNo>sample string 9</ItemNo>
  </ItemOrderListEntity>
</ArrayOfItemOrderListEntity>