Brands
Brand contains data about a visible brands to the app.
Methods
Retrieve Brands
Provides the details of all brands.
GET /marketplace/v2/brands
Response 200
Returns a collection of Brands objects
{
"results": [
{
"ref": "string",
"name": "string",
"loginUrl": "string",
"logoUrl": "string"
}
],
"meta": {}
}
Retrieve Brands by ref
Provides the details of brand.
GET /marketplace/v2/brands/{brandRef}
Response 200
Returns a Brand object
{
"ref": "string",
"name": "string",
"loginUrl": "string",
"logoUrl": "string"
}
Definitions
Brand
Brand response item
Name | Type | Description |
---|---|---|
ref* | string | Brand reference/code string |
name* | string | Brand name string |
loginUrl* | string | Brand link to login url |
logoUrl* | string | Brand link to logo image |