Brand Details

Given a brand-id, return detailed information about that brand.

Specifications

Endpoint: /brands/{id:uuid}

Method: GET

URL Parameters:  bid: uuid

Request Type: { }

Response Type: {

     brand {

         id uuid

         description string

         domain RFC1035

         created_at ISO8601

         updated_at ISO8601

         account_id uuid

         brandguard_threshold integer

     }

}

Sample Request: curl -X GET https://api.novacloud.ai/brands/00000000-0000-0000-0000-000000000000/

Sample Response: {

     "brand": {

         "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

     }

}