Several brands can be managed under one organization. Use the Search method of the Brands endpoint to find and generate a list of available brands.
Specification
Endpoint: /brands/
Method: GET
URL Parameters: None
Request Type: {
query string
offset uuid
limit integer
}
Response Type: {
items []{
brand {
id uuid
description string
domain RFC1035
created_at ISO8601
updated_at ISO8601
account_id uuid
brandguard_threshold integer
}
}
next {
query string
offset uuid
limit integer
}
}
Sample Request: curl -X GET https://api.novacloud.ai/brands/
Sample Response: {
"items": [
{
"id": "00000000-0000-0000-0000-000000000000",
"description": "description",
"domain": "example.com",
"created_at": "2023-10-16T00:00:00Z",
"updated_at": "2023-10-16T00:00:00Z",
"account_id": "00000000-0000-0000-0000-000000000000",
"brandguard_threshold": 0
}
],
"next": {
"query": "foo",
"offset": "00000000-0000-0000-0000-000000000000",
"limit": 0
}
}