GET Brands/{id}
Gets a brand by it's ID, represented as BrandDto.
Request Information
URI Parameters
| Name | Description | Type | Additional information |
|---|---|---|---|
| id |
The ID of the brand. |
globally unique identifier |
Required |
Body Parameters
None.
Response Information
Resource Description
The brand data.
BrandDto| Name | Description | Type | Additional 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": "b2af70f4-5c80-4f7e-9048-4bb5c2d672f2",
"NetworkId": "db6c7fe0-b685-4268-80ae-433577410026",
"Name": "sample string 3",
"BrandFuelMasters": [
{
"FuelMasterId": "eb2c7183-0d9d-4815-a3d5-17bc190eaf88",
"FuelMasterName": "sample string 3",
"Name": "sample string 4"
},
{
"FuelMasterId": "eb2c7183-0d9d-4815-a3d5-17bc190eaf88",
"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>eb2c7183-0d9d-4815-a3d5-17bc190eaf88</FuelMasterId>
<FuelMasterName>sample string 3</FuelMasterName>
<Id>64b54c3a-8b0a-42af-97dc-5bd51b9f452e</Id>
<Name>sample string 4</Name>
</BrandFuelMasterDto>
<BrandFuelMasterDto>
<FuelMasterId>eb2c7183-0d9d-4815-a3d5-17bc190eaf88</FuelMasterId>
<FuelMasterName>sample string 3</FuelMasterName>
<Id>64b54c3a-8b0a-42af-97dc-5bd51b9f452e</Id>
<Name>sample string 4</Name>
</BrandFuelMasterDto>
</BrandFuelMasters>
<Id>b2af70f4-5c80-4f7e-9048-4bb5c2d672f2</Id>
<Name>sample string 3</Name>
<NetworkId>db6c7fe0-b685-4268-80ae-433577410026</NetworkId>
</BrandDto>