GET api/brand

Request Information

URI Parameters

None.

Body Parameters

None.

Response Information

Resource Description

Collection of Brand
NameDescriptionTypeAdditional information
Brand_Name

string

None.

Brand_Code

integer

None.

Ispos

integer

None.

bsort

decimal number

None.

rsort

decimal number

None.

Response Formats

application/json, text/json

Sample:
[
  {
    "Brand_Name": "sample string 1",
    "Brand_Code": 2,
    "Ispos": 1,
    "bsort": 1.0,
    "rsort": 1.0
  },
  {
    "Brand_Name": "sample string 1",
    "Brand_Code": 2,
    "Ispos": 1,
    "bsort": 1.0,
    "rsort": 1.0
  }
]

application/xml, text/xml

Sample:
<ArrayOfBrand xmlns:i="http://www.w3.org/2001/XMLSchema-instance" xmlns="http://schemas.datacontract.org/2004/07/clscrud">
  <Brand>
    <Brand_Code>2</Brand_Code>
    <Brand_Name>sample string 1</Brand_Name>
    <Ispos>1</Ispos>
    <bsort>1</bsort>
    <rsort>1</rsort>
  </Brand>
  <Brand>
    <Brand_Code>2</Brand_Code>
    <Brand_Name>sample string 1</Brand_Name>
    <Ispos>1</Ispos>
    <bsort>1</bsort>
    <rsort>1</rsort>
  </Brand>
</ArrayOfBrand>