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

# Get Domain Mismatches

> Tracking-domain mismatches for a domain — offer/affiliate assignments whose observed traffic ran on a *different* tracking domain than the one assigned. Each entry pairs the assigned domain with the domain traffic was actually seen on, plus the offer and affiliate involved. Backed by reporting data; send an optional reporting window and filters in the body.


Tracking-domain mismatches for a domain — offer/affiliate assignments whose observed traffic ran on a *different* tracking domain than the one assigned. Each entry pairs the assigned domain with the domain traffic was actually seen on, plus the offer and affiliate involved. Send an optional reporting window and filters in the body.


## OpenAPI

````yaml openapi/traffic-health.yaml post /networks/traffic/mismatches/{networkTrackingDomainId}
openapi: 3.0.3
info:
  title: Everflow Network API - Traffic Health
  description: >
    Read endpoints for Traffic Health — the operational health of the domains
    and hosting IPs behind your tracking and conversion links. Surfaces uptime /
    SSL / DNS / expiry incidents, blocklist reputation, the remediation tasks
    that need your attention, and per-domain assignment summaries.


    Traffic Health has two tiers. The capabilities available to a network are
    reported by `GET /networks/traffic/access`. Endpoints marked **Traffic
    Health Premium** (domain and IP blocklist reputation) require the premium
    package; on a network without it they return an authorization error rather
    than data.


    For how these incidents and reputation flags work, see [Traffic Health:
    Incidents & Reputation
    Management](https://helpdesk.everflow.io/customer/traffic-health-incidents-and-reputation-management).
  version: 1.0.0
servers:
  - url: https://api.eflow.team/v1
security: []
tags:
  - name: Traffic Health
paths:
  /networks/traffic/mismatches/{networkTrackingDomainId}:
    post:
      tags:
        - Traffic Health
      summary: Get Domain Mismatches
      description: >
        Tracking-domain mismatches for a domain — offer/affiliate assignments
        whose observed traffic ran on a *different* tracking domain than the one
        assigned. Each entry pairs the assigned domain with the domain traffic
        was actually seen on, plus the offer and affiliate involved. Backed by
        reporting data; send an optional reporting window and filters in the
        body.
      parameters:
        - in: path
          name: networkTrackingDomainId
          required: true
          schema:
            type: integer
          description: The tracking domain ID to check for mismatches.
      requestBody:
        required: false
        content:
          application/json:
            schema:
              $ref: '#/components/schemas/MismatchQuery'
      responses:
        '200':
          description: ''
          content:
            application/json:
              example:
                mismatches:
                  - network_id: 5
                    network_tracking_domain_id: 8
                    assigned_network_tracking_domain_id: 10361
                    network_offer_id: 882
                    network_affiliate_id: 20019
                    assignment_type: offer
                    time_detected: 1744663035
                    relationship:
                      network_tracking_domain:
                        network_tracking_domain_id: 8
                        network_id: 5
                        url: www.serve-eflow-test.com
                        is_primary_domain: false
                        domain_status: active
                        is_unassignable: false
                        ownership: internal
                        is_ssl_enabled: true
                        time_created: 1482191486
                        time_saved: 1777378430
                      assigned_network_tracking_domain:
                        network_tracking_domain_id: 10361
                        network_id: 5
                        url: multiproxy.clik2trk.com
                        is_primary_domain: false
                        domain_status: active
                        is_unassignable: false
                        ownership: external
                        is_ssl_enabled: true
                        time_created: 1718823747
                        time_saved: 1779323042
                      offer:
                        network_offer_id: 882
                        network_id: 5
                        name: Mountains of White Castle Burgers!
                        offer_status: active
                      affiliate:
                        network_affiliate_id: 20019
                        network_id: 5
                        name: Media Media Media
                        account_status: active
              schema:
                type: object
                properties:
                  mismatches:
                    type: array
                    items:
                      $ref: '#/components/schemas/Mismatch'
      security:
        - API Key: []
components:
  schemas:
    MismatchQuery:
      type: object
      description: >-
        Optional filters and search terms. Send an empty object `{}` for the
        default window.
      properties:
        filters:
          type: object
          properties:
            network_assigned_tracking_domain_id:
              type: integer
              description: Narrow to mismatches whose traffic ran on this assigned domain.
            network_offer_id:
              type: integer
            network_affiliate_id:
              type: integer
            from_timestamp:
              type: integer
              description: Reporting window start (unix seconds).
            to_timestamp:
              type: integer
              description: Reporting window end (unix seconds).
            assignment_types:
              type: array
              description: >-
                Filter by assignment level: `offer`, `affiliate`,
                `offer_affiliate`.
              items:
                type: string
        search_terms:
          type: array
          description: Optional search by domain, offer, or affiliate.
          items:
            type: object
            properties:
              search_type:
                type: string
                description: '`domain`, `offer`, or `affiliate`.'
              value:
                type: string
    Mismatch:
      type: object
      properties:
        network_id:
          type: integer
        network_tracking_domain_id:
          type: integer
          description: The assigned tracking domain (the one queried).
        assigned_network_tracking_domain_id:
          type: integer
          description: The tracking domain traffic was actually observed on.
        network_offer_id:
          type: integer
        network_affiliate_id:
          type: integer
        assignment_type:
          type: string
          description: >-
            The level the assignment exists at: `offer`, `affiliate`, or
            `offer_affiliate`.
        time_detected:
          type: integer
          description: When the mismatch was detected (unix seconds).
        relationship:
          type: object
          properties:
            network_tracking_domain:
              $ref: '#/components/schemas/MismatchTrackingDomain'
            assigned_network_tracking_domain:
              $ref: '#/components/schemas/MismatchTrackingDomain'
            offer:
              $ref: '#/components/schemas/MismatchOffer'
            affiliate:
              $ref: '#/components/schemas/MismatchAffiliate'
    MismatchTrackingDomain:
      type: object
      properties:
        network_tracking_domain_id:
          type: integer
        network_id:
          type: integer
        url:
          type: string
        is_primary_domain:
          type: boolean
        domain_status:
          type: string
        is_unassignable:
          type: boolean
        ownership:
          type: string
          description: '`internal` or `external`.'
        is_ssl_enabled:
          type: boolean
        html_static_redirect:
          type: string
        url_redirect:
          type: string
        public_notes:
          type: string
        time_created:
          type: integer
        time_saved:
          type: integer
    MismatchOffer:
      type: object
      properties:
        network_offer_id:
          type: integer
        network_id:
          type: integer
        name:
          type: string
        offer_status:
          type: string
    MismatchAffiliate:
      type: object
      properties:
        network_affiliate_id:
          type: integer
        network_id:
          type: integer
        name:
          type: string
        account_status:
          type: string
  securitySchemes:
    API Key:
      type: apiKey
      in: header
      name: X-Eflow-Api-Key

````