GET Brands/{id}

Gets a brand by it's ID, represented as BrandDto.

Request Information

URI Parameters

NameDescriptionTypeAdditional information
id

The ID of the brand.

globally unique identifier

Required

Body Parameters

None.

Response Information

Resource Description

The brand data.

BrandDto
NameDescriptionTypeAdditional information
Id

globally unique identifier

None.

NetworkId

globally unique identifier

None.

Name

string

None.

BrandFuelMasters

Collection of BrandFuelMasterDto

None.

Response Formats

application/json, text/json

Sample:
{
  "Id": "ab1bcfc8-b60a-40dd-ade7-c75d8048199e",
  "NetworkId": "27ffcafb-9871-4e05-bc15-2bf47f515634",
  "Name": "sample string 3",
  "BrandFuelMasters": [
    {
      "FuelMasterId": "4ad02efe-b0c0-4a19-bfbb-8f55868570c4",
      "FuelMasterName": "sample string 3",
      "Name": "sample string 4"
    },
    {
      "FuelMasterId": "4ad02efe-b0c0-4a19-bfbb-8f55868570c4",
      "FuelMasterName": "sample string 3",
      "Name": "sample string 4"
    }
  ]
}

application/xml, text/xml

Sample:
<BrandDto xmlns:i="http://www.w3.org/2001/XMLSchema-instance" xmlns="http://schemas.datacontract.org/2004/07/Ationet.Model">
  <BrandFuelMasters>
    <BrandFuelMasterDto>
      <FuelMasterId>4ad02efe-b0c0-4a19-bfbb-8f55868570c4</FuelMasterId>
      <FuelMasterName>sample string 3</FuelMasterName>
      <Id>4ad981b6-9f8a-4dcf-89ea-57be6ba55793</Id>
      <Name>sample string 4</Name>
    </BrandFuelMasterDto>
    <BrandFuelMasterDto>
      <FuelMasterId>4ad02efe-b0c0-4a19-bfbb-8f55868570c4</FuelMasterId>
      <FuelMasterName>sample string 3</FuelMasterName>
      <Id>4ad981b6-9f8a-4dcf-89ea-57be6ba55793</Id>
      <Name>sample string 4</Name>
    </BrandFuelMasterDto>
  </BrandFuelMasters>
  <Id>ab1bcfc8-b60a-40dd-ade7-c75d8048199e</Id>
  <Name>sample string 3</Name>
  <NetworkId>27ffcafb-9871-4e05-bc15-2bf47f515634</NetworkId>
</BrandDto>