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

# Deletes a question from the system.



## OpenAPI

````yaml https://raw.githubusercontent.com/FooBarBizarre/docs/refs/heads/main/api-reference/openapi.json delete /questions/{questionId}
openapi: 3.0.1
info:
  title: Maia Backend API
  version: v1
servers: []
security: []
paths:
  /questions/{questionId}:
    delete:
      tags:
        - Questionnaire
      summary: Deletes a question from the system.
      parameters:
        - name: questionId
          in: path
          description: The unique identifier of the question to delete.
          required: true
          schema:
            type: integer
            format: int32
      responses:
        '200':
          description: OK
        '204':
          description: Question deleted successfully.

````