> ## 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.

# Update brand (Admin only)



## OpenAPI

````yaml /openapi/product-service-inventory.json patch /v1/brands/{id}
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/{id}:
    patch:
      tags:
        - inventory
      summary: Update brand (Admin only)
      operationId: InventoryBrandsController_update
      parameters:
        - name: id
          required: true
          in: path
          schema:
            type: string
      requestBody:
        required: true
        content:
          application/json:
            schema:
              $ref: '#/components/schemas/UpdateBrandBody'
      responses:
        '200':
          description: ''
      security:
        - bearer: []
components:
  schemas:
    UpdateBrandBody:
      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
  securitySchemes:
    bearer:
      scheme: bearer
      bearerFormat: JWT
      type: http

````