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

# Delete Care Gap

> Delete a specific Care Gap.



## OpenAPI

````yaml delete /caregaps/api/{quality_program}/caregap/{caregap_id}/
openapi: 3.0.2
info:
  title: Care Gaps API
  description: >-
    This API supports the management of definitions, gaps, and webhook
    notifications.
  version: 0.0.1
servers:
  - url: https://caregaps.sandbox.elationemr.com/
    description: CareGaps API - Sandbox Environment
security: []
paths:
  /caregaps/api/{quality_program}/caregap/{caregap_id}/:
    delete:
      tags:
        - Caregaps
      summary: Delete an existing caregap.
      description: Delete a specific Care Gap.
      operationId: >-
        caregaps_delete_caregaps_api__quality_program__caregap__caregap_id___delete
      parameters:
        - required: true
          schema:
            title: Quality Program
            type: string
          name: quality_program
          in: path
        - required: true
          schema:
            title: Caregap Id
            type: string
          name: caregap_id
          in: path
        - required: false
          schema:
            title: Practice Id
            type: string
          name: practice_id
          in: query
      responses:
        '200':
          description: Successful Response
          content:
            application/json:
              schema: {}
        '422':
          description: Validation Error
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/HTTPValidationError'
      security:
        - OAuth2PasswordBearer: []
components:
  schemas:
    HTTPValidationError:
      title: HTTPValidationError
      type: object
      properties:
        detail:
          title: Detail
          type: array
          items:
            $ref: '#/components/schemas/ValidationError'
    ValidationError:
      title: ValidationError
      required:
        - loc
        - msg
        - type
      type: object
      properties:
        loc:
          title: Location
          type: array
          items:
            type: string
        msg:
          title: Message
          type: string
        type:
          title: Error Type
          type: string
  securitySchemes:
    OAuth2PasswordBearer:
      type: oauth2
      flows:
        password:
          scopes: {}
          tokenUrl: token

````