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": "1d58cc61-c92c-41f1-b23a-8f8c627f9ef6",
"NetworkId": "8ad442a0-325c-4faf-8a48-c46976709ba1",
"Name": "sample string 3",
"BrandFuelMasters": [
{
"FuelMasterId": "bde235d9-c72e-4fb7-94ca-1823308dee7c",
"FuelMasterName": "sample string 3",
"Name": "sample string 4"
},
{
"FuelMasterId": "bde235d9-c72e-4fb7-94ca-1823308dee7c",
"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>bde235d9-c72e-4fb7-94ca-1823308dee7c</FuelMasterId>
<FuelMasterName>sample string 3</FuelMasterName>
<Id>af04f391-d2b6-42e9-91f2-c6a0a19b35f8</Id>
<Name>sample string 4</Name>
</BrandFuelMasterDto>
<BrandFuelMasterDto>
<FuelMasterId>bde235d9-c72e-4fb7-94ca-1823308dee7c</FuelMasterId>
<FuelMasterName>sample string 3</FuelMasterName>
<Id>af04f391-d2b6-42e9-91f2-c6a0a19b35f8</Id>
<Name>sample string 4</Name>
</BrandFuelMasterDto>
</BrandFuelMasters>
<Id>1d58cc61-c92c-41f1-b23a-8f8c627f9ef6</Id>
<Name>sample string 3</Name>
<NetworkId>8ad442a0-325c-4faf-8a48-c46976709ba1</NetworkId>
</BrandDto>