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

# Remove an offering's qualification question

> Removes the offering's copy of a question. The library original is unaffected.



## OpenAPI

````yaml /openapi/public-openapi.json delete /v1/account/offerings/{offering_ref}/qualification/questions/{question_id}
openapi: 3.1.0
info:
  title: Purple API
  version: 0.0.0
servers:
  - url: https://api.dev.purplelabelmd.com
security: []
tags:
  - description: Sign a patient in and out and manage the browser session.
    name: Sessions & authentication
  - description: Run the server-driven intake questionnaire question by question.
    name: Intake
  - description: Address autocomplete for the intake flow.
    name: Addresses
  - description: Read the public status of a patient's enrollment.
    name: Enrollment
  - description: Track a client's onboarding progress.
    name: Onboarding
  - description: Read back the platform configuration stored for your brand.
    name: Brand configuration
  - description: Enable offerings for your brand and set their display copy.
    name: Offering configuration
  - description: Start and track payments for an order.
    name: Payments
  - description: Subscribe to platform events and manage delivery endpoints.
    name: Webhooks
paths:
  /v1/account/offerings/{offering_ref}/qualification/questions/{question_id}:
    delete:
      tags:
        - Offering configuration
      summary: Remove an offering's qualification question
      description: >-
        Removes the offering's copy of a question. The library original is
        unaffected.
      operationId: removeQualificationOverlayQuestion
      parameters:
        - in: path
          name: offering_ref
          required: true
          schema:
            type: string
        - in: path
          name: question_id
          required: true
          schema:
            type: string
      responses:
        '204':
          description: removed — no response body. The library original is unaffected.
        '404':
          $ref: '#/components/responses/OverlayNotFound'
        '503':
          $ref: '#/components/responses/OverlayStoreUnavailable'
      security:
        - apiKey: []
components:
  responses:
    OverlayNotFound:
      content:
        application/problem+json:
          schema:
            $ref: '#/components/schemas/CompileProblem'
      description: >-
        no shared clinical bundle for that (therapy|offering, mode), or no such
        resource
    OverlayStoreUnavailable:
      content:
        application/problem+json:
          schema:
            $ref: '#/components/schemas/CompileProblem'
      description: >-
        the durable question store did not answer — nothing was written or
        changed; safe to retry once the store recovers
  schemas:
    CompileProblem:
      description: RFC 7807 problem, extended with the structured compile issue list
      properties:
        issues:
          items:
            properties:
              code:
                type: string
              message:
                type: string
              where:
                type: string
            required:
              - code
              - where
              - message
            type: object
          type: array
        status:
          type: integer
        title:
          type: string
      required:
        - title
        - status
      type: object
  securitySchemes:
    apiKey:
      description: 'Per-client API key (M2M). Presented as `Authorization: Bearer <key>`.'
      scheme: bearer
      type: http

````