List brands for a project
The endpoint receives as path param project id. If the project exists, the list of brands for the project is returned. Additional filters can be applied as query params. By default, ARCHIVED brands are not returned. To include them, the status filter must be used.
Path parameters
Customer's project id
Query parameters
The brand status to filter the brands.
[ "INCOMPLETE" ]
The brand metadata type to filter the brands
Ordering of the results: field name with an optional order separated by a comma. Fields that support ordering are 'brandName', 'status', 'createTime', 'updateTime' with possible ordering 'desc' or 'asc'
Size of the page to be returned.
Page token to request subsequent pages when using pagination. This should be the value generated by the system in a previous list request.
Filter brands by brand name.
Response
OK
Example response
[
{
"brands": [
{
"brandId": "1234567890",
"brandName": "My End Customer Brand Name",
"brandMetadataId": "4444444444",
"status": "INCOMPLETE",
"callbackUrl": "https://example.com/callback",
"createTime": "2023-10-01 12:00:00+00:00",
"updateTime": "2023-10-01 12:00:00+00:00"
}
]
}
]