> ## 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 Traffic Control

> Delete an existing traffic control.




## OpenAPI

````yaml openapi/traffic-controls.yaml delete /networks/trafficcontrols/{controlId}
openapi: 3.0.3
info:
  title: Everflow Network API - Traffic Controls
  description: >
    Endpoints for managing network-level traffic controls. Traffic controls are
    rules that filter incoming traffic based on variables like device type, geo,
    or referrer — they help block fraudulent or low-quality traffic before it
    reaches your offers. For a full overview, see the [Traffic Controls
    guide](https://helpdesk.everflow.io/customer/traffic-controls).
  version: 1.0.0
servers:
  - url: https://api.eflow.team/v1
security: []
tags:
  - name: Traffic Controls
paths:
  /networks/trafficcontrols/{controlId}:
    delete:
      tags:
        - Traffic Controls
      summary: Delete Traffic Control
      description: |
        Delete an existing traffic control.
      parameters:
        - in: path
          name: controlId
          required: true
          schema:
            type: integer
          description: The unique traffic control ID to delete.
      responses:
        '200':
          description: ''
          content:
            application/json:
              example:
                success: true
              schema:
                type: object
                properties:
                  success:
                    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

````