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": "46321d7f-3f5b-4957-b5d8-6fa2627c6f55",
"NetworkId": "fe422dd9-47a6-45a5-b8e0-c89c72e50692",
"Name": "sample string 3",
"BrandFuelMasters": [
{
"FuelMasterId": "49e65da5-e02f-4d1c-bb8a-00f4f9bc3f8a",
"FuelMasterName": "sample string 3",
"Name": "sample string 4"
},
{
"FuelMasterId": "49e65da5-e02f-4d1c-bb8a-00f4f9bc3f8a",
"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>49e65da5-e02f-4d1c-bb8a-00f4f9bc3f8a</FuelMasterId>
<FuelMasterName>sample string 3</FuelMasterName>
<Id>bc3dc5cf-59ee-4ccb-a8eb-7477d571c216</Id>
<Name>sample string 4</Name>
</BrandFuelMasterDto>
<BrandFuelMasterDto>
<FuelMasterId>49e65da5-e02f-4d1c-bb8a-00f4f9bc3f8a</FuelMasterId>
<FuelMasterName>sample string 3</FuelMasterName>
<Id>bc3dc5cf-59ee-4ccb-a8eb-7477d571c216</Id>
<Name>sample string 4</Name>
</BrandFuelMasterDto>
</BrandFuelMasters>
<Id>46321d7f-3f5b-4957-b5d8-6fa2627c6f55</Id>
<Name>sample string 3</Name>
<NetworkId>fe422dd9-47a6-45a5-b8e0-c89c72e50692</NetworkId>
</BrandDto>