# Get brand Retrieves complete details for a single brand. Endpoint: GET /v1/brands/{brandUuid} Version: 1.0.0 Security: Bearer ## Path parameters: - `brandUuid` (string, required) Unique identifier of the brand. ## Query parameters: - `include[contents]` (boolean) - `expand[contents]` (boolean) ## Response 200 fields (application/json): - `uuid` (string, required) Unique identifier for this brand. - `createdAt` (string, required) Timestamp when this brand was created. Example: "2025-11-23T14:15:22.123456Z" - `updatedAt` (string, required) Timestamp when this brand was last modified. Example: "2025-11-23T14:15:22.123456Z" - `removedAt` (string,null) Timestamp when this brand was removed. Null if not removed. Example: "2025-11-23T14:15:22.123456Z" - `status` (string, required) Current lifecycle status of this brand. Enum: "draft", "published", "unpublished", "removed" - `code` (string, required) Code for this brand. - `contentUuids` (array,null) List of content UUIDs associated with this brand. Only populated when include[contents]=true. - `contents` (array,null) List of locale-specific content for this brand. Only populated when expand[contents]=true. - `contents.uuid` (string, required) Unique identifier for this brand content. - `contents.brandUuid` (string, required) Identifier of the brand this content belongs to. - `contents.localeUuid` (string, required) Identifier of the locale this content is localized for. - `contents.createdAt` (string, required) Timestamp when this brand content was created. Example: "2025-11-23T14:15:22.123456Z" - `contents.updatedAt` (string, required) Timestamp when this brand content was last modified. Example: "2025-11-23T14:15:22.123456Z" - `contents.label` (string, required) Localized display label for the brand. - `contents.description` (string,null) Localized description of the brand. ## Response 401 fields (application/problem+json): - `type` (string,null) - `title` (string,null) - `status` (integer,null) - `detail` (string,null) - `instance` (string,null) ## Response 403 fields (application/problem+json): - `type` (string,null) - `title` (string,null) - `status` (integer,null) - `detail` (string,null) - `instance` (string,null) - `correlationId` (string,null) ## Response 404 fields (application/problem+json): - `type` (string,null) - `title` (string,null) - `status` (integer,null) - `detail` (string,null) - `instance` (string,null) - `correlationId` (string,null) ## Response 500 fields (application/problem+json): - `type` (string,null) - `title` (string,null) - `status` (integer,null) - `detail` (string,null) - `instance` (string,null) - `correlationId` (string,null)