v1

latestOpenAPI 3.1.02026-07-261690320.7 KB

Get issue group tasks

Returns the tasks related to an issue group

get/issues/groups/{issue_group_id}/tasks

Path parameters

issue_group_idinteger required

The unique ID of the issue group

Response

A list of tasks related to an issue group

idinteger required

The task ID.

titlestring required

The title for this task.

urlstring required

A external link to this task.

statusstring required

The status of this task.

Example response

[
  {
    "id": 1,
    "title": "Major upgrade for mlflow",
    "url": "https://aikido-demo-jira.atlassian.net/browse/AIDJ-1",
    "status": "In Progress",
    "assignee": {
      "name": "Rick",
      "avatar_url": "https://avatar-management--avatars.us-west-2.prod.public.atl-paas.net"
    },
    "scope": {
      "type": "code_repo",
      "id": 123
    }
  }
]