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

# Dismiss EOI Request

> Dismisses an EOI request without approving any additional volume. The previously approved or guaranteed issue volume remains in effect.



## OpenAPI

````yaml schemas/2023-08-25/schema.yaml post /eoi_requests/dismiss
openapi: 3.0.3
info:
  title: ''
  version: 0.0.0
servers: []
security: []
paths:
  /eoi_requests/dismiss:
    post:
      tags:
        - eoi_requests
      description: >-
        Dismisses an EOI request without approving any additional volume. The
        previously approved or guaranteed issue volume remains in effect.
      operationId: eoi_requests_dismiss_create
      requestBody:
        content:
          application/json:
            schema:
              $ref: '#/components/schemas/EoiAction'
        required: true
      responses:
        '200':
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/EoiActionResponse'
          description: ''
      security:
        - tokenAuth: []
components:
  schemas:
    EoiAction:
      type: object
      properties:
        entity_id:
          type: string
          description: >-
            ID of the EOI request's enrollment record, as returned in
            `entity_id` by the list endpoint.
        entity_type:
          allOf:
            - $ref: '#/components/schemas/EoiEntityTypeEnum'
          description: >-
            The `entity_type` returned by the list endpoint for this EOI
            request.
        approved_volume:
          type: string
          format: decimal
          pattern: ^-?\d{0,10}(?:\.\d{0,2})?$
          nullable: true
          description: >-
            The coverage volume approved by the carrier. Required when
            approving.
        effective_date:
          type: string
          format: date
          nullable: true
          description: >-
            The date the approved volume goes into effect. Required when
            approving.
      required:
        - entity_id
        - entity_type
    EoiActionResponse:
      type: object
      properties:
        status:
          type: string
          enum:
            - approved
            - dismissed
          description: The result of the action.
    EoiEntityTypeEnum:
      enum:
        - Member
        - Dependent
      type: string
      description: |-
        * `Member` - Member-level coverage
        * `Dependent` - Dependent-level coverage
  securitySchemes:
    tokenAuth:
      type: http
      scheme: bearer
      description: API Key authentication with required prefix "Bearer"

````