# Create a new brand Endpoint: POST /brands Version: 1.0 Security: bearer ## Request fields (application/json): - `title` (string, required) The title of the brand Example: "HealthCorp" - `organizationId` (number) The ID of the organization the brand is associated with (if applicable) Example: 123 - `isEnabled` (boolean) Indicates whether the brand is enabled Example: true - `clientAccountId` (number, required) The ID of the client account Example: 123 ## Response 201 fields (application/json): - `title` (string, required) The title of the brand Example: "HealthCorp" - `organizationId` (number) The ID of the organization the brand is associated with (if applicable) Example: 123 - `isEnabled` (boolean) Indicates whether the brand is enabled Example: true - `clientAccountId` (number, required) The ID of the client account Example: 123 ## Response 401 fields (application/json): - `message` (string, required) Error message indicating unauthorized access. Example: "Unauthorized" - `statusCode` (number, required) HTTP status code for unauthorized access. Example: 401 ## Response 400 fields