> ## Documentation Index
> Fetch the complete documentation index at: https://secdocs.asikoexpress.com/llms.txt
> Use this file to discover all available pages before exploring further.

# Create brand (Admin only)



## OpenAPI

````yaml /openapi/product-service-inventory.json post /v1/brands
openapi: 3.0.0
info:
  title: Asiko Product Service — Inventory API
  description: >-
    Admin and Super Admin only endpoints: create/update/delete products,
    categories, brands
  version: '1.0'
  contact: {}
servers:
  - url: https://asikodevapi.candourit.io
    description: Production (via api-gateway)
  - url: http://localhost:3000
    description: Local development (via api-gateway)
security: []
tags:
  - name: inventory
    description: ''
paths:
  /v1/brands:
    post:
      tags:
        - inventory
      summary: Create brand (Admin only)
      operationId: InventoryBrandsController_create
      parameters: []
      requestBody:
        required: true
        content:
          application/json:
            schema:
              $ref: '#/components/schemas/CreateBrandBody'
      responses:
        '201':
          description: ''
      security:
        - bearer: []
components:
  schemas:
    CreateBrandBody:
      type: object
      properties:
        name:
          type: string
          example: Mama Africa
        slug:
          type: string
          example: mama-africa
        logoUrl:
          type: object
          example: https://cdn.asikofoods.com/brands/mama-africa-logo.png
          nullable: true
      required:
        - name
        - slug
  securitySchemes:
    bearer:
      scheme: bearer
      bearerFormat: JWT
      type: http

````