GET BrandFuels?brandId={brandId}&searchText={searchText}
Gets all the brandFuels, represented as BrandFUelDto.
Request Information
URI Parameters
| Name | Description | Type | Additional information |
|---|---|---|---|
| brandId | globally unique identifier |
Required |
|
| searchText | string |
Required |
Body Parameters
None.
Response Information
Resource Description
A collection of brands.
Collection of BrandFuelMasterDto| Name | Description | Type | Additional information |
|---|---|---|---|
| FuelMasterId | globally unique identifier |
None. |
|
| FuelMasterName | string |
None. |
|
| Name | string |
None. |
Response Formats
application/json, text/json
Sample:
[
{
"FuelMasterId": "be1cd95b-235f-4b50-a561-2bf83a90dfcd",
"FuelMasterName": "sample string 3",
"Name": "sample string 4"
},
{
"FuelMasterId": "be1cd95b-235f-4b50-a561-2bf83a90dfcd",
"FuelMasterName": "sample string 3",
"Name": "sample string 4"
}
]
application/xml, text/xml
Sample:
<ArrayOfBrandFuelMasterDto xmlns:i="http://www.w3.org/2001/XMLSchema-instance" xmlns="http://schemas.datacontract.org/2004/07/Ationet.Model">
<BrandFuelMasterDto>
<FuelMasterId>be1cd95b-235f-4b50-a561-2bf83a90dfcd</FuelMasterId>
<FuelMasterName>sample string 3</FuelMasterName>
<Id>af0ab13c-60aa-46e0-a7fd-fecbbf75b0f7</Id>
<Name>sample string 4</Name>
</BrandFuelMasterDto>
<BrandFuelMasterDto>
<FuelMasterId>be1cd95b-235f-4b50-a561-2bf83a90dfcd</FuelMasterId>
<FuelMasterName>sample string 3</FuelMasterName>
<Id>af0ab13c-60aa-46e0-a7fd-fecbbf75b0f7</Id>
<Name>sample string 4</Name>
</BrandFuelMasterDto>
</ArrayOfBrandFuelMasterDto>