Skip to main content

Fetch Brands

Fetch all brand details per market.

Headers

PropertyValue
Request TypePOST
Content Typeapplication-json
URL{{EnvironmentURL}}/api/services/app/PriceList/FetchBrands

Please see Environments under Getting Started for test and production environment URLs.

Request Parameters

PropertyTypeDescriptionRequired
identifierintThe tenant id.
marketenumIn this context, this value should remain as 14 which resolves to the General Market. See Constants (Enums) for available markets.

Sample Request

{
"market": 14,
"identifier": 967,
"additionalInfo": ""
}

Response Parameters

Field NameTypeDescription
brandIdenumThe brand enum value. See Constants(Enums) for available brands.
brandNamestringThe brand display value.

Sample Response (1 product)

{
"result": [
{
"brandId": 4,
"brandName": "Dell"
},
{
"brandId": 5,
"brandName": "Dell E"
},
{
"brandId": 3,
"brandName": "HPE"
},
{
"brandId": 56,
"brandName": "Imeon"
},
{
"brandId": 20,
"brandName": "Kingston"
},
{
"brandId": 1,
"brandName": "Lenovo"
},
{
"brandId": 59,
"brandName": "SchneiderElectric"
},
{
"brandId": 58,
"brandName": "SolarEdge"
}
],
"targetUrl": null,
"success": true,
"error": null,
"unAuthorizedRequest": false,
"__abp": true
}