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

# Delete organisations apps

> Delete an App by ID in the current organisation.




## OpenAPI

````yaml delete /organisations/{organisationId}/apps/{appId}
openapi: 3.0.3
info:
  title: Switchboard API
  description: >-
    The Switchboard API provides users the ability to manage their Apps,
    Integrations and Workflows
  version: 0.0.1-alpha.0
servers:
  - url: https://platform.versori.com/api/switchboard/v1alpha1/
    description: Production server
  - url: http://localhost:8080/v1alpha1/
    description: Localhost
security:
  - apiKey: []
paths:
  /organisations/{organisationId}/apps/{appId}:
    delete:
      tags:
        - apps
      description: |
        Delete an App by ID in the current organisation.
      operationId: DeleteApp
      parameters:
        - name: organisationId
          in: path
          required: true
          schema:
            type: string
          example: '101'
        - name: appId
          in: path
          required: true
          schema:
            type: string
      responses:
        '200':
          $ref: '#/components/responses/DeleteAppResponse'
        default:
          $ref: '#/components/responses/ErrorResponse'
components:
  responses:
    DeleteAppResponse:
      description: |
        DeleteAppResponse is the response definition after deleting an app.
      content:
        application/json:
          schema:
            $ref: '#/components/schemas/DeletedResource'
    ErrorResponse:
      description: The default error response
      content:
        application/json:
          schema:
            $ref: '#/components/schemas/Error'
  schemas:
    DeletedResource:
      type: object
      properties:
        id:
          type: string
    Error:
      type: object
      properties:
        code:
          type: string
        message:
          type: string
        extensions:
          type: object
      required:
        - code
        - message
  securitySchemes:
    apiKey:
      type: apiKey
      in: header
      name: Authorization

````