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

# Update brand



## OpenAPI

````yaml https://app.mavel.ai/api/v1/openapi.json patch /brands/{brand_id}
openapi: 3.0.3
info:
  title: Mavel REST API
  version: v1
  description: >-
    REST API for Mavel. Authentication: pass `X-API-Key: <key>` header.
    Rate-limited at 200 req/min/project. Plan tier: Enterprise (or Scale+ on
    Agency tier).
servers:
  - url: /api/v1
security:
  - ApiKeyAuth: []
paths:
  /brands/{brand_id}:
    patch:
      tags:
        - Brands
      summary: Update brand
      parameters:
        - schema:
            type: string
            format: uuid
          required: true
          name: brand_id
          in: path
      responses:
        '200':
          description: OK
      security:
        - ApiKeyAuth: []
components:
  securitySchemes:
    ApiKeyAuth:
      type: apiKey
      in: header
      name: X-API-Key

````