v1

latestOpenAPI 3.1.02026-07-261690320.7 KB

List tasks from project

List tasks live from the integrated task tracker

get/task_tracking/projects/{project_id}/tasks

Path parameters

project_idstring required

The unique ID of a task tracker project

Query parameters

searchstring

Optional parameter to search the tasks

integration_idinteger

Optional. The id of the task tracker integration when multiple integrations are available

Response

A array of tasks is returned

idstring

The id of the task

keystring

Alternative key to identify the task

subjectstring

The task's subject

Example response

[
  {
    "id": "10123",
    "key": "TEST-111",
    "subject": "Major upgrade for gopkg.in/src-d/go-git.v4",
    "assignees": [
      {
        "username": "Rick Astley"
      }
    ]
  },
  {
    "id": "10321",
    "key": "TEST-420",
    "subject": "Remediate Critical Open-Source Issues in core repo",
    "assignees": []
  }
]