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

# Delete Coupon Code

> Delete a coupon code by its ID. This action is permanent and cannot be undone.




## OpenAPI

````yaml openapi/coupon-codes.yaml delete /networks/couponcodes/{couponCodeId}
openapi: 3.0.3
info:
  title: Everflow Network API - Coupon Codes
  description: >
    Endpoints for managing coupon codes in the Everflow network. Coupon codes
    are a powerful attribution tool for tracking partner performance through
    easy-to-share codes — they are specifically designed for tracking and
    attributing conversions to the right partners, not for discounts (discount
    functionality is set up in your own e-commerce platform). For setup, see the
    [Coupon Codes
    guide](https://helpdesk.everflow.io/customer/how-to-create-manage-coupon-codes).
  version: 1.0.0
servers:
  - url: https://api.eflow.team/v1
security: []
tags:
  - name: Coupon Codes
paths:
  /networks/couponcodes/{couponCodeId}:
    delete:
      tags:
        - Coupon Codes
      summary: Delete Coupon Code
      description: >
        Delete a coupon code by its ID. This action is permanent and cannot be
        undone.
      parameters:
        - in: path
          name: couponCodeId
          required: true
          schema:
            type: integer
          description: The ID of the coupon code you want to delete.
      responses:
        '200':
          description: ''
          content:
            application/json:
              example:
                result: true
              schema:
                type: object
                properties:
                  result:
                    type: boolean
                    description: Whether the deletion was successful.
      security:
        - API Key: []
components:
  securitySchemes:
    API Key:
      description: The Everflow API key generated from the Control Center > Security.
      in: header
      name: X-Eflow-Api-Key
      type: apiKey

````