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

# List Tasks

> Customer-actionable remediation tasks across the network — each task is a domain that needs action from you (renew a domain, verify ownership, fix DNS, etc.), with its urgency category, status, and the incident that generated it.


Customer-actionable remediation tasks across the network — each task is a domain that needs action from you (renew a domain, verify ownership, fix DNS, etc.), with its urgency, status, and originating incident.


## OpenAPI

````yaml openapi/traffic-health.yaml get /networks/traffic/tasks
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/tasks:
    get:
      tags:
        - Traffic Health
      summary: List Tasks
      description: >
        Customer-actionable remediation tasks across the network — each task is
        a domain that needs action from you (renew a domain, verify ownership,
        fix DNS, etc.), with its urgency category, status, and the incident that
        generated it.
      responses:
        '200':
          description: ''
          content:
            application/json:
              example:
                tasks:
                  - network_id: 1
                    url: track.acme.com
                    identifier: T81BNW0EFPJ9O0FP
                    type: renew_domain
                    category: reactive
                    status: to_do
                    assignment: customer
                    title: Your domain subscription has expired. Renew it now
                    description: >-
                      Under your domain registrar, add or choose a payment
                      method and renew the domain.
                    time_created: 1779845980
                    time_completed: 0
                    relationship:
                      incident_identifier: DOXTKYVL2JYFT9YS
              schema:
                type: object
                properties:
                  tasks:
                    type: array
                    items:
                      $ref: '#/components/schemas/Task'
      security:
        - API Key: []
components:
  schemas:
    Task:
      type: object
      properties:
        network_id:
          type: integer
        url:
          type: string
        network_tracking_domain_id:
          type: integer
        network_conversion_domain_id:
          type: integer
        identifier:
          type: string
        type:
          type: string
          description: Task type (e.g. `renew_domain`).
        category:
          type: string
          description: Urgency category (e.g. `reactive`).
        status:
          type: string
          description: Task status (e.g. `to_do`).
        assignment:
          type: string
          description: Who the task is assigned to (e.g. `customer`).
        title:
          type: string
        description:
          type: string
        time_created:
          type: integer
        time_completed:
          type: integer
          description: Unix seconds; `0` while the task is open.
        relationship:
          type: object
          properties:
            incident_identifier:
              type: string
              description: The incident that generated the task.
  securitySchemes:
    API Key:
      type: apiKey
      in: header
      name: X-Eflow-Api-Key

````