> ## 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 Label

> Delete a label by its value.




## OpenAPI

````yaml openapi/labels.yaml delete /networks/labels
openapi: 3.0.3
info:
  title: Everflow Network API - Labels
  description: >
    Endpoints for managing labels in the Everflow network. Labels are flexible
    custom tags that let everyone organize and filter data their own way. They
    can be applied to advertisers, affiliates, campaigns, offers, and offer
    groups for internal organization and searching. For an overview, see the
    [Segmentation
    guide](https://helpdesk.everflow.io/customer/offer-labels-categories-segmentation-options).
  version: 1.0.0
servers:
  - url: https://api.eflow.team/v1
security: []
tags:
  - name: Labels
paths:
  /networks/labels:
    delete:
      tags:
        - Labels
      summary: Delete Label
      description: |
        Delete a label by its value.
      parameters:
        - in: query
          name: label
          required: true
          schema:
            type: string
          description: The label to delete.
      responses:
        '200':
          description: ''
          content:
            application/json:
              schema:
                type: object
                properties:
                  result:
                    type: boolean
                    description: Whether the operation was successful.
              example:
                result: true
      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

````