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

# Organisation aktualisieren

> Aktualisieren Sie das ACU-Limit und/oder den Anzeigenamen einer Organisation

Erfordert den persönlichen API key eines Enterprise-Admins.

Aktualisieren Sie das maximale ACU-Limit pro Abrechnungszeitraum und/oder den Anzeigenamen für eine bestimmte Organisation innerhalb Ihrer Enterprise-Umgebung. Dieser Endpunkt ermöglicht es Ihnen, eines der Felder unabhängig oder beide gleichzeitig zu ändern.


## OpenAPI

````yaml de/v2-openapi.yaml PATCH /v2/enterprise/organizations/{org_id}
openapi: 3.1.0
info:
  description: Devin v2 API mit persönlichen API Keys für Enterprise-Admins
  title: Devin API v2
  version: 2.0.0
servers: []
security:
  - bearerAuth: []
paths:
  /v2/enterprise/organizations/{org_id}:
    patch:
      tags:
        - organizations
      summary: Endpoint zum Aktualisieren einer Organisation
      description: >-
        Aktualisieren Sie das ACU-Limit und/oder den Anzeigenamen einer
        Organisation
      operationId: update_organization_endpoint_v2_enterprise_organizations__org_id__patch
      parameters:
        - in: path
          name: org_id
          required: true
          schema:
            title: Org Id
            type: string
      requestBody:
        content:
          application/json:
            schema:
              $ref: '#/components/schemas/OrganizationUpdate'
        required: true
      responses:
        '200':
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/SuccessResponse'
          description: Erfolgreiche Antwort
        '422':
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/HTTPValidationError'
          description: Validierungsfehler
components:
  schemas:
    OrganizationUpdate:
      properties:
        display_name:
          anyOf:
            - type: string
            - type: 'null'
          title: Display Name
        max_acu_limit:
          anyOf:
            - type: integer
            - type: 'null'
          title: Max Acu Limit
      title: OrganizationUpdate
      type: object
    SuccessResponse:
      properties:
        status:
          default: success
          title: Status
          type: string
      title: SuccessResponse
      type: object
    HTTPValidationError:
      properties:
        detail:
          items:
            $ref: '#/components/schemas/ValidationError'
          title: Detail
          type: array
      title: HTTPValidationError
      type: object
    ValidationError:
      properties:
        loc:
          items:
            anyOf:
              - type: string
              - type: integer
          title: Location
          type: array
        msg:
          title: Message
          type: string
        type:
          title: Error Type
          type: string
      required:
        - loc
        - msg
        - type
      title: ValidationError
      type: object
  securitySchemes:
    bearerAuth:
      description: Persönlicher API Key (apk_user_*) nur für Enterprise-Administratoren
      scheme: bearer
      type: http

````