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

# Delete Organization

> Delete an organization and its client users

<Note>
  Deletes the organization and all associated client users. Credits on the org may be transferred back to the workspace.
</Note>

<Warning>
  This is destructive. Confirm before calling from automations or MCP tools.
</Warning>


## OpenAPI

````yaml DELETE /orgs/{orgId}
openapi: 3.0.3
info:
  title: Convocore OpenAPI
  description: Full API reference for Convocore
  version: 1.0.4
servers:
  - url: https://eu-gcp-api.vg-stuff.com/v3
security: []
paths:
  /orgs/{orgId}:
    delete:
      tags:
        - Organizations
      summary: Delete Organization
      description: Deletes an organization and all its associated clients
      operationId: orgsRouter-deleteOrg
      parameters:
        - name: orgId
          in: path
          required: true
          schema:
            type: string
      responses:
        '200':
          description: Successful response
          content:
            application/json:
              schema:
                type: object
                properties:
                  success:
                    type: boolean
                  message:
                    type: string
                  deletedClientsCount:
                    type: number
                required:
                  - success
                  - message
                  - deletedClientsCount
                additionalProperties: false
        default:
          $ref: '#/components/responses/error'
      security:
        - Authorization: []
components:
  responses:
    error:
      description: Error response
      content:
        application/json:
          schema:
            type: object
            properties:
              message:
                type: string
              code:
                type: string
              issues:
                type: array
                items:
                  $ref: '#/components/schemas/message_11569e'
            required:
              - message
              - code
            additionalProperties: false
  schemas:
    message_11569e:
      type: object
      properties:
        message:
          type: string
      required:
        - message
      additionalProperties: false
  securitySchemes:
    Authorization:
      type: http
      scheme: bearer

````