GET api/Brands?token={token}

Request Information

URI Parameters

NameDescriptionTypeAdditional information
token

string

Required

Body Parameters

None.

Response Information

Resource Description

Collection of BrandBindingModel
NameDescriptionTypeAdditional information
USCATVLS_1

string

None.

Leyenda

string

None.

ImagePath

string

None.

Response Formats

application/json, text/json

Sample:
[
  {
    "USCATVLS_1": "sample string 1",
    "Leyenda": "sample string 2",
    "ImagePath": "sample string 3"
  },
  {
    "USCATVLS_1": "sample string 1",
    "Leyenda": "sample string 2",
    "ImagePath": "sample string 3"
  }
]

application/xml, text/xml

Sample:
<ArrayOfBrandBindingModel xmlns:i="http://www.w3.org/2001/XMLSchema-instance" xmlns="http://schemas.datacontract.org/2004/07/MaxSalesApi.Models">
  <BrandBindingModel>
    <ImagePath>sample string 3</ImagePath>
    <Leyenda>sample string 2</Leyenda>
    <USCATVLS_1>sample string 1</USCATVLS_1>
  </BrandBindingModel>
  <BrandBindingModel>
    <ImagePath>sample string 3</ImagePath>
    <Leyenda>sample string 2</Leyenda>
    <USCATVLS_1>sample string 1</USCATVLS_1>
  </BrandBindingModel>
</ArrayOfBrandBindingModel>