The following endpoint provides information about brands tied to a user. This may also include information about logos.
Please note:
The API described in this article references business units, which is the former name for brands. This change does not impact this API. When making requests to the endpoint listed below, the URL path should still include /business-units/v3/business-units/
, as the the endpoint path itself has not changed.
This API currently only supports retrieving brand data and does not support associating assests with a brand, nor creating a new brand.
To get the brands that a user has access to, you can make a GET
request to
/business-units/v3/business-units/user/{userId}
The following is an example of what the response body would include:
{
"logoMetadata": {
"logoAltText": "logo sample text",
"resizedUrl": "sillystring",
"logoUrl": "examplelogourl.com"
},
"name": "sample business unit name",
"id": "101"
}
For more information on how to use the brands API, check out the reference documentation.