> ## 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 Assignment Summary

> Assignment summary for a single tracking domain — whether it is active and assignable, and how many offers, partners, and offer/partner combinations are currently assigned to it. Assignments themselves are managed at the offer and affiliate level.


The assignment summary for a single tracking domain — whether it is active and assignable, and how many offers, partners, and offer/partner combinations are assigned to it.


## OpenAPI

````yaml openapi/traffic-health.yaml get /networks/traffic/assignments/{domainUrl}/summary
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/assignments/{domainUrl}/summary:
    get:
      tags:
        - Traffic Health
      summary: Get Domain Assignment Summary
      description: >
        Assignment summary for a single tracking domain — whether it is active
        and assignable, and how many offers, partners, and offer/partner
        combinations are currently assigned to it. Assignments themselves are
        managed at the offer and affiliate level.
      parameters:
        - in: path
          name: domainUrl
          required: true
          schema:
            type: string
          description: The tracking domain URL (e.g. `track.acme.com`).
      responses:
        '200':
          description: ''
          content:
            application/json:
              example:
                active: true
                assignable: true
                offers_assigned: 4
                partners_assigned: 12
                combinations_assigned: 18
              schema:
                $ref: '#/components/schemas/AssignmentSummary'
      security:
        - API Key: []
components:
  schemas:
    AssignmentSummary:
      type: object
      properties:
        active:
          type: boolean
          description: Whether the tracking domain is active.
        assignable:
          type: boolean
          description: Whether the domain can be assigned.
        offers_assigned:
          type: integer
        partners_assigned:
          type: integer
        combinations_assigned:
          type: integer
          description: Number of offer/partner combinations assigned to the domain.
  securitySchemes:
    API Key:
      type: apiKey
      in: header
      name: X-Eflow-Api-Key

````