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

# Update Organization

> Updates the details of an existing organization.



## OpenAPI

````yaml PUT /api/v1/vendors/{vendorId}/organizations/{organizationId}
openapi: 3.1.0
info:
  title: Deepslate
  description: OpenAPI specification of the public Deepslate API
  version: v1.0
servers:
  - url: https://app.deepslate.eu
    description: Generated server url
security: []
tags:
  - name: SIP Credentials Management
    description: API endpoints for managing SIP Credentials within an Organization
  - name: Assistant Management
    description: API endpoints for managing Assistants within an Organization
  - name: SIP Numbers Management
    description: API endpoints for managing SIP Numbers within an Organization
  - name: Agent Task Management
    description: API endpoints for retrieving Agent Tasks
  - name: Organization Management
    description: API endpoints for managing Organizations
  - name: Agent Management
    description: API endpoints for managing Agents within an Organization
  - name: LLM Generation Strategy Management
    description: >-
      API endpoints for managing LLM Generation Strategies within an
      Organization
paths:
  /api/v1/vendors/{vendorId}/organizations/{organizationId}:
    put:
      tags:
        - Organization Management
      summary: Update Organization
      description: Updates the details of an existing organization.
      operationId: updateOrganization
      parameters:
        - name: vendorId
          in: path
          description: ID of the Vendor (UUID)
          required: true
          schema:
            type: string
          example: a1b2c3d4-e5f6-7890-1234-567890abcdef
        - name: organizationId
          in: path
          description: ID of the Organization to update (UUID)
          required: true
          schema:
            type: string
          example: f0e9d8c7-b6a5-4321-fedc-ba9876543210
      requestBody:
        content:
          application/json:
            schema:
              $ref: '#/components/schemas/OrganizationUpdate'
        required: true
      responses:
        '200':
          description: Organization successfully updated
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/EmptyResponse'
        '400':
          description: Bad Request - Invalid input data
        '401':
          description: Unauthorized
        '403':
          description: >-
            Forbidden - User does not have permission to update this
            organization
        '404':
          description: Organization, Vendor or Plan not found
components:
  schemas:
    OrganizationUpdate:
      type: object
      description: Data required to update an existing Organization.
      properties:
        companyName:
          type: string
          description: Updated name of the organization.
          example: Example Corporation
        industry:
          type: string
          description: Updated industry the organization operates in.
          example: Software Development
        contact:
          $ref: '#/components/schemas/OrganizationUpdateContact'
          description: Updated primary contact information for the organization.
        planId:
          type: string
          description: Updated ID of the Plan assigned to this organization (UUID).
          example: d5b0f4a9-b4c3-5e2d-9c8f-6b0e1d2f3a4b
      required:
        - companyName
        - contact
        - industry
        - planId
    EmptyResponse:
      type: object
      description: Standard API response wrapper
      properties:
        success:
          type: boolean
          description: Indicates if the request was successful
          example: true
        message:
          type: string
          description: Human-readable message
        data:
          description: Payload data object
          example: null
        timestamp:
          type: string
          format: date-time
          description: Response timestamp in ISO-8601 format
          example: '2025-04-17T14:23:30Z'
        traceId:
          type: string
          description: Correlation or trace ID
      required:
        - success
        - timestamp
    OrganizationUpdateContact:
      type: object
      description: Contact person details.
      properties:
        firstName:
          type: string
          description: Updated first name of the contact.
          example: John
        lastName:
          type: string
          description: Updated last name of the contact.
          example: Smith
        phoneNumber:
          type: string
          description: Updated contact phone number (preferably E.164 format).
          example: '+491719876543'
        country:
          type: string
          description: Updated country code of the contact (ISO 3166-1 alpha-2).
          example: DE
      required:
        - country
        - firstName
        - lastName
        - phoneNumber

````