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

# Delete a plan entitlement quota

> Removes a plan entitlement quota and its associated data



## OpenAPI

````yaml specs/entitlements_api_docs.json delete /api/v1/plan-entitlement-quota/{id}
openapi: 3.1.0
info:
  title: Entitlement API
  version: 1.0.0
  description: API for managing entitlements and plan entitlement quotas.
servers:
  - url: https://dev-entitlements-api.iqraa.ai/api/v1
    description: Production server
security: []
tags: []
paths:
  /api/v1/plan-entitlement-quota/{id}:
    delete:
      tags:
        - Plan Entitlement Quotas
      summary: Delete a plan entitlement quota
      description: Removes a plan entitlement quota and its associated data
      operationId: PlanEntitlementQuotaController_remove
      parameters:
        - name: x-admin-api-key
          in: header
          description: The API key to access the admin API
          required: true
          schema:
            type: string
        - name: id
          required: true
          in: path
          description: ID of the plan entitlement quota to delete
          example: 123e4567-e89b-12d3-a456-426614174000
          schema:
            type: string
      responses:
        '200':
          description: Successfully deleted the quota
        '401':
          description: Unauthorized - Missing or invalid admin API key.
        '404':
          description: Not Found - Plan entitlement quota not found
        '409':
          description: Conflict - Cannot delete quota with existing usage records

````