List Brand Orders according to the filters applied.
List Brand Orders, according to the filters applied. This endpoint allows filtering over all brands.
Path parameters
Customer's project id
Query parameters
The brand Order status to filter the brand orders.
[ "INCOMPLETE" ]
These are the different processes the customers can request to add different channels to the Brand.
Note: US_SC_REGISTRY is only used to retrieve existing brand orders. It cannot be used for new ones.
Filter brand orders by brand registration process metadata name.
Sorting of the results using SQL-like syntax: comma-separated field names with an optional ':desc' or ':asc' suffix. Fields that support sorting are 'metadataName', '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
{
"orders": [
{
"brandOrderId": "212421442412",
"brandId": "3242343243243",
"status": "INCOMPLETE",
"metadataName": "US_SC_REGISTRY",
"createTime": "2021-11-03T14:30:03Z",
"updateTime": "2021-11-03T14:30:03Z"
}
],
"links": {
"next": "https://compliance.api.sinch.com/v1/projects/{projectId}/us/brands?pageToken=abc123"
}
}