> ## 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 forms



## OpenAPI

````yaml post /v1/forms/delete
openapi: 3.0.0
info:
  title: Thena Platform
  description: The Thena Platform API description
  version: 1.0.0
  contact: {}
servers:
  - url: https://platform.thena.ai
    description: Platform
  - url: http://localhost:8000
    description: Local
security:
  - ApiKey: []
tags: []
paths:
  /v1/forms/delete:
    post:
      tags:
        - Forms
      description: >-
        This endpoint is only available for standard and enterprise tier
        organizations.
      parameters: []
      requestBody:
        required: true
        content:
          application/json:
            schema:
              $ref: '#/components/schemas/DeleteFormsDto'
      responses:
        '204':
          description: Resource deleted successfully
        '400':
          description: Form validation failed
          content:
            application/json:
              example:
                statusCode: 400
                message: 'Cannot delete default form, default form: FO123456789'
                error: Bad Request
        '401':
          description: User is not authenticated!
          content:
            application/json:
              example:
                statusCode: 401
                message: User is not authenticated!
                error: Unauthorized
        '403':
          description: User does not have access to this resource!
          content:
            application/json:
              example:
                statusCode: 403
                message: User does not have access to this resource!
                error: Forbidden
        '404':
          description: Forms not found!
          content:
            application/json:
              example:
                statusCode: 404
                message: 'Forms not found: FO123456789'
                error: Not Found
        '500':
          description: Something went wrong!
          content:
            application/json:
              example:
                statusCode: 500
                message: Something went wrong!
                error: Internal Server Error
        '503':
          description: This service/resource is currently unavailable.
          content:
            application/json:
              example:
                statusCode: 503
                message: This service/resource is currently unavailable.
                error: Service Unavailable
components:
  schemas:
    DeleteFormsDto:
      type: object
      properties:
        forms:
          type: array
          items:
            $ref: '#/components/schemas/DeleteFormItemDto'
      required:
        - forms
    DeleteFormItemDto:
      type: object
      properties:
        formId:
          type: string
          description: The ID of the form
        version:
          type: number
          description: The version of the form
      required:
        - formId
        - version
  securitySchemes:
    ApiKey:
      type: apiKey
      in: header
      name: x-api-key
      description: 'Enter your API key '

````