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

# Delete a commission plan

> **Beta. This endpoint is unstable and may still change without notice.** Pin against the dated version and watch the changelog.

Delete a commission plan.



## OpenAPI

````yaml assets/openapi-v2-commission.json delete /api/commissions/plans/{id}
openapi: 3.1.0
info:
  title: Fynn V2 Commission API
  version: 2026-07
  description: >-
    REST API for Fynn commission plans. Define how sales reps earn commission on
    invoices, set per-product rates, and control two monthly payout gates: a
    minimum payout and a minimum monthly revenue, each evaluated per sales rep
    and calendar month. Authenticate with a bearer token of your Organisation
    that carries the commission-plans permission.
servers:
  - url: https://coreapi.io
    description: Production
  - url: https://preview.coreapi.io
    description: Sandbox
security:
  - BearerToken: []
tags:
  - name: Commission Plans
    description: >-
      Create and manage commission plans, rates, product rules and monthly
      payout gates.
paths:
  /api/commissions/plans/{id}:
    delete:
      tags:
        - Commission Plans
      summary: Delete a commission plan
      description: >-
        **Beta. This endpoint is unstable and may still change without notice.**
        Pin against the dated version and watch the changelog.


        Delete a commission plan.
      operationId: deleteCommissionPlan
      parameters:
        - name: id
          in: path
          required: true
          schema:
            type: string
          description: The commission plan id.
      responses:
        '204':
          description: The commission plan was deleted.
        '401':
          description: Authentication is missing or the token is invalid.
          content:
            application/problem+json:
              schema:
                $ref: '#/components/schemas/ProblemError'
        '403':
          description: The token lacks the permission to manage commission plans.
          content:
            application/problem+json:
              schema:
                $ref: '#/components/schemas/ProblemError'
        '404':
          description: No commission plan with this id exists in your Organisation.
          content:
            application/problem+json:
              schema:
                $ref: '#/components/schemas/ProblemError'
components:
  schemas:
    ProblemError:
      type: object
      description: >-
        Problem detail error body (application/problem+json). Additional members
        may be present depending on the error.
      properties:
        status:
          type: integer
          example: 404
        type:
          type: string
          description: Stable machine readable error key.
          example: PLAN__NOT_FOUND
        title:
          type: string
          example: An error occurred
        detail:
          type: string
          example: Plan not found.
      required:
        - status
        - type
        - title
        - detail
  securitySchemes:
    BearerToken:
      type: http
      scheme: bearer
      description: >-
        Bearer token of your Organisation with the commission-plans permission
        (read for GET, write for POST/PUT/DELETE). Send it as Authorization:
        Bearer <token>.

````