> ## 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 Affiliate Tracking Domain

> Remove a tracking domain assignment from an affiliate.




## OpenAPI

````yaml openapi/tracking-domains.yaml delete /networks/affiliates/{affiliateId}/trackingdomains/{affiliateTrackingDomainId}
openapi: 3.0.3
info:
  title: Everflow Network API - Tracking Domains
  description: >
    Endpoints for managing tracking domains and affiliate tracking domain
    assignments. Tracking domains are the custom domains used to construct
    tracking links and impression URLs for offers. Affiliate tracking domain
    assignments control which tracking domain a specific partner uses when
    generating links. For more detail, see [Tracking & Conversion Domain
    Management](https://helpdesk.everflow.io/customer/tracking-conversion-domain-management)
    in the Help Center.
  version: 1.0.0
servers:
  - url: https://api.eflow.team/v1
security: []
tags:
  - name: Tracking Domains
paths:
  /networks/affiliates/{affiliateId}/trackingdomains/{affiliateTrackingDomainId}:
    delete:
      tags:
        - Tracking Domains
      summary: Delete Affiliate Tracking Domain
      description: |
        Remove a tracking domain assignment from an affiliate.
      parameters:
        - in: path
          name: affiliateId
          required: true
          schema:
            type: integer
          description: The unique affiliate ID.
        - in: path
          name: affiliateTrackingDomainId
          required: true
          schema:
            type: integer
          description: The unique affiliate tracking domain ID.
      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

````