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

> A single remediation task by its identifier, including its title, step-by-step description, urgency, status, and the incident that generated it.


A single remediation task by its identifier, including its title, step-by-step description, urgency, status, and the incident that generated it.


## OpenAPI

````yaml openapi/traffic-health.yaml get /networks/traffic/tasks/{taskIdentifier}
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/{taskIdentifier}:
    get:
      tags:
        - Traffic Health
      summary: Get Task
      description: >
        A single remediation task by its identifier, including its title,
        step-by-step description, urgency, status, and the incident that
        generated it.
      parameters:
        - in: path
          name: taskIdentifier
          required: true
          schema:
            type: string
          description: The task identifier (e.g. `T81BNW0EFPJ9O0FP`).
      responses:
        '200':
          description: ''
          content:
            application/json:
              example:
                network_id: 1
                url: track.acme.com
                network_tracking_domain_id: 0
                network_conversion_domain_id: 0
                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:
                $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

````