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

# Update Company Settings

> Update company settings



## OpenAPI

````yaml PATCH /settings/company
openapi: 3.1.0
info:
  title: Outbox AI API
  description: API for managing AI agents (chatbots and voicebots) on the Outbox platform
  version: 1.0.0
servers:
  - url: https://api.getoutbox.ai
security: []
paths:
  /settings/company:
    patch:
      summary: Update Company Settings
      description: Update company settings
      requestBody:
        description: Company update details
        required: true
        content:
          application/json:
            schema:
              $ref: '#/components/schemas/CompanyUpdate'
          multipart/form-data:
            schema:
              $ref: '#/components/schemas/CompanyUpdateMultipart'
      responses:
        '200':
          description: Company updated successfully
        '400':
          description: Bad Request - Invalid data
        '401':
          description: Unauthorized - Invalid or missing API key
        '403':
          description: Forbidden - Insufficient permissions (requires level 4)
      security:
        - CompanyApiKey: []
components:
  schemas:
    CompanyUpdate:
      type: object
      properties:
        name:
          type: string
        email:
          type: string
        address:
          type: object
          properties:
            address:
              type: string
            city:
              type: string
            state:
              type: string
            country:
              type: string
            zip_code:
              type: string
        api_key:
          type: string
          description: Setting this field (any value) triggers API key regeneration
    CompanyUpdateMultipart:
      type: object
      properties:
        name:
          type: string
        email:
          type: string
        logo:
          type: string
          format: binary
          description: Company logo file
        address:
          type: string
          description: JSON string of address object
        api_key:
          type: string
          description: Setting this field (any value) triggers API key regeneration
  securitySchemes:
    CompanyApiKey:
      type: apiKey
      in: header
      name: Authorization
      description: Company API Key

````