GET api/Product?brandId={brandId}

Retrieves the products available in the system.

Request Information

Parameters

NameDescriptionAdditional information
brandId
No documentation available.

Define this parameter in the request URI.

Response Information

Response body formats

application/json, text/json

Sample:
[
  {
    "description": "sample string 1",
    "name": "sample string 2",
    "id": 1
  },
  {
    "description": "sample string 1",
    "name": "sample string 2",
    "id": 1
  },
  {
    "description": "sample string 1",
    "name": "sample string 2",
    "id": 1
  }
]

application/xml, text/xml

Sample:
<ArrayOfproduct xmlns:i="http://www.w3.org/2001/XMLSchema-instance" xmlns="http://schemas.datacontract.org/2004/07/Ticket.Api.Org">
  <product>
    <id xmlns="http://schemas.datacontract.org/2004/07/Ticket.Api">1</id>
    <description>sample string 1</description>
    <name>sample string 2</name>
  </product>
  <product>
    <id xmlns="http://schemas.datacontract.org/2004/07/Ticket.Api">1</id>
    <description>sample string 1</description>
    <name>sample string 2</name>
  </product>
  <product>
    <id xmlns="http://schemas.datacontract.org/2004/07/Ticket.Api">1</id>
    <description>sample string 1</description>
    <name>sample string 2</name>
  </product>
</ArrayOfproduct>