This returns the list of brands available in the Equotix One account.
Request
Body Params application/json
The domain you are assigned to authenticate your Equotix One account.
The email address assigned to the user account in your Equotix One.
The unix timestamp used to sign this API request.
The calculated signature for this API request.
The brand ID to search for specifically.
Filter the list of brands by name.
filter_date_modified
stringÂ
optionalFilter the list of brands modified after the spcified date.
Filter the list of brands to include deleted records.
filter_channel_group_id
stringÂ
optionalThe channel group ID to search for, comma separated for multiple channel group IDs.
Page number of the results.
The key for the ordering of the results. Accepts "name", "date_modified"
The direction for the ordering of the results. Accepts "ASC", "DESC"
The number of results per page. Accepts 1 to 100.
{
"domain": "string",
"api_key": "string",
"auth_timestamp": 0,
"auth_signature": "string",
"brand_id": 0,
"filter_name": "string",
"filter_date_modified": "string",
"filter_deleted": true,
"filter_channel_group_id": "string",
"page": 0,
"sort": "string",
"order": "string",
"limit": 0
}
Responses
application/json Returns only if there is an error.
The total number of results available.
brands
array [object {6}]Â
optionalThe list of brands available.
The channel group ID assigned.
The date time this brand was last modified.
Indicates if the brand has been deleted. Only returned if filter_deleted is "1".
{
"error": [
"string"
],
"total": 0,
"brands": [
{
"brand_id": 0,
"channel_group_id": 0,
"name": "string",
"image": "string",
"date_modified": "string",
"deleted": true
}
]
}
Modified at 2024-10-20 05:18:33