List brands for a project
List existing brands according to the specified filters.
Path parameters
Customer's project id
Query parameters
The brand status to filter the brands.
[ "ACTIVE" ]
Filter brands by brand name.
Channel represents the different channels that can be assigned to a brand after completing a brand order. Each channel has different requirements and it is assigned after completing a specific brand order process.
Filter by specific channel available.
Optional boolean flag to filter by content provider. If true, it returns content providers. If false, it returns standard brands. Default is false.
Sorting of the results using SQL-like syntax: comma-separated field names with an optional ':desc' or ':asc' suffix. Fields that support sorting are 'displayName', 'status', 'createTime', 'updateTime'. Defaults to ascending order when no suffix is provided.
Size of the page to be returned. Default is 20. Maximum is 100.
Page token to request subsequent pages when using pagination. This should be the value generated by the system in a previous list request.
Response
OK
Example response
{
"brands": [
{
"brandId": "1234567890",
"displayName": "My End Customer Brand Name",
"status": "ACTIVE",
"channels": [
"RCS"
],
"createTime": "2023-10-01T12:00:00Z",
"updateTime": "2023-10-01T12:00:00Z"
}
],
"links": {
"next": "https://compliance.api.sinch.com/v1/projects/{projectId}/us/brands?pageToken=abc123"
}
}