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

# Delete Plan

> Delete a subscription plan by ID.



## OpenAPI

````yaml DELETE /subscription-plans/{id}
openapi: 3.1.0
info:
  title: BoundlessPay API
  version: 1.0.0
servers: []
security: []
paths:
  /subscription-plans/{id}:
    delete:
      description: Delete a subscription plan by ID.
      parameters:
        - name: id
          in: path
          required: true
          schema:
            type: string
      responses:
        '401':
          description: Missing API credentials

````