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

# Delete an app

> Soft deletes an app from the system



## OpenAPI

````yaml delete /apps/{id}/delete-app
openapi: 3.0.0
info:
  title: THENA APPS STUDIO
  description: >-
    Thena apps studio is a comprehensive API suite designed to facilitate the
    creation and management of apps.
  version: '1.0'
  contact: {}
servers:
  - url: https://apps-studio.thena.ai
security: []
tags: []
paths:
  /apps/{id}/delete-app:
    delete:
      tags:
        - App Creation
      summary: Delete an app
      description: Delete an app with the given id
      operationId: appsStudio.deleteApp
      parameters:
        - name: id
          required: true
          in: path
          description: The id of the app to delete
          schema:
            type: string
      responses:
        '200':
          description: App deleted successfully
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/AppDeleteResponseDto'
        '403':
          description: Unable to delete app. User lacks required permissions
        '404':
          description: Unable to delete app. App not found or already deleted
        '500':
          description: Unexpected error occurred. Unable to delete app
      security:
        - x-api-key: []
components:
  schemas:
    AppDeleteResponseDto:
      type: object
      properties:
        status:
          type: string
          description: Status of the delete operation
          example: success
        message:
          type: string
          description: Message describing the result of the operation
          example: App deleted successfully
        appDetails:
          type: object
          description: Details of the deleted app
          properties:
            name:
              type: string
              example: My App
            description:
              type: string
              example: App description
            deletedAt:
              type: string
              format: date-time
      required:
        - status
        - message
        - appDetails
  securitySchemes:
    x-api-key:
      type: apiKey
      in: header
      name: x-api-key

````