GET
/
v2
/
tasks
[
  {
    "id": "<string>",
    "title": "<string>",
    "status": "todo",
    "source": {
      "type": "requirement",
      "context": {
        "scope": "employee",
        "employee_id": "<string>"
      },
      "requirement_id": "<string>",
      "definition": "<string>",
      "summary": "<string>",
      "resources": [
        {}
      ],
      "period_start_date": "2023-12-25",
      "period_end_date": "2023-12-25",
      "due_date": "2023-12-25",
      "region": {
        "id": "<string>",
        "name": "<string>"
      },
      "fee": {
        "type": "fixed",
        "amount": "<string>"
      },
      "eta": {
        "estimation": {
          "min": 123,
          "max": 123,
          "unit": "hour"
        },
        "earliest_date": "2023-11-07T05:31:56Z",
        "latest_date": "2023-11-07T05:31:56Z"
      },
      "tags": [
        "certificate-of-good-standing"
      ],
      "default_resolution_name": "manual",
      "resolutions": {
        "hosted": {
          "type": "hosted",
          "description": "<string>",
          "method": "<string>",
          "url": "<string>",
          "content_type": "<string>",
          "fields": [
            {
              "name": "<string>",
              "description": "<string>",
              "required": true,
              "type": "<string>"
            }
          ]
        },
        "manual": {
          "type": "manual",
          "steps": [
            {
              "id": "<string>",
              "title": "<string>",
              "description": "<string>",
              "paths": [
                {
                  "type": "<string>",
                  "value": "<string>",
                  "text": "<string>"
                }
              ],
              "order": 123
            }
          ]
        }
      },
      "criteria_met": [
        {
          "type": "requirement-done",
          "reason": "<string>",
          "task_id": "<string>"
        }
      ]
    },
    "priority": "high"
  }
]

Authorizations

Authorization
string
header
required

The access token received from the authorization server in the OAuth 2.0 flow.

Query Parameters

region
enum<string> | null
Available options:
AL,
AK,
AZ,
AR,
CA,
CO,
CT,
DE,
DC,
FL,
GA,
HI,
ID,
IL,
IN,
IA,
KS,
KY,
LA,
ME,
MD,
MA,
MI,
MN,
MS,
MO,
MT,
NE,
NV,
NH,
NJ,
NM,
NY,
NC,
ND,
OH,
OK,
OR,
PA,
RI,
SC,
SD,
TN,
TX,
UT,
VT,
VA,
WA,
WV,
WI,
WY
start_date
string<date> | null
end_date
string<date> | null
type
enum<string> | null
Available options:
requirement,
question
statuses
enum<string>[] | null
tags
enum<string>[] | null
definition_id
string | null
include_managed
boolean
default:false
page_size
integer
default:50

Tasks are paginated on a given page size. If no page size is specified, a default of 50 is used.

Required range: x > 0
page_num
integer
default:1

Page number for the paginated tasks. If no page number is specified, a default of 1 is used.

Required range: x > 0

Response

200
application/json

Successful Response

The response is of type PlatformTask · object[].