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

# Update



## OpenAPI

````yaml /openapi_v4_core.json patch /v4/core/companies/{companyId}
openapi: 3.0.0
info:
  title: Commenda Integrations V4 API
  description: Commenda Integrations — unified accounting, commerce, and CRM API.
  version: 4.0.0
  contact: {}
servers:
  - url: https://api.integrations.commenda.io
    description: Production
security:
  - api_key: []
tags: []
paths:
  /v4/core/companies/{companyId}:
    patch:
      tags:
        - Companies
      summary: Update
      operationId: CompanyController_update
      parameters:
        - name: companyId
          required: true
          in: path
          schema:
            type: number
      requestBody:
        required: true
        content:
          application/json:
            schema:
              $ref: '#/components/schemas/UpdateCompanyDTO'
      responses:
        '200':
          description: The company was updated.
      security:
        - api_key: []
components:
  schemas:
    UpdateCompanyDTO:
      type: object
      properties:
        name:
          type: string
          example: Acme Inc
  securitySchemes:
    api_key:
      type: apiKey
      in: header
      name: api_key
      description: Your Commenda Integrations API key, sent in the `api_key` header.

````