v1

latestOpenAPI 3.1.0Apache 2.02026-07-245981,1853.0 MB
Issues

Get Issue Tasks

Use this API to retrieve a list of all tasks for a specific issue.

get/v1/issuetasks/{issueId}

Path parameters

issueIdstring uuid required
Example:00000000-0000-0000-0000-000000000000

The unique identifier of the issue. This value is obtained using the Get List of Issues API.

Query parameters

pageinteger

Results page to be retrieved (0..N). Example- '?page=1

The page number of the results.

sizeinteger

Number of records per page (1..20). Example- '?size=20

The number of results per page.

sort'taskName,asc' | 'taskName,desc' | 'id,asc' | 'id,desc' | 'priority,asc' | 'priority,desc' | 'createdDate,asc' | 'createdDate,desc' | 'deadline,asc' | 'deadline,desc'

The sort criteria that dictates the order of the results.

Response

Successfully fetched tasks related to the issue

issueIdstring uuid

The unique identifier of the issue. This value is obtained using the Get Issue API.

taskIdstring uuid

The unique identifier of the task.

taskNamestring

The name of the task.

deadlinestring date-time

The date and time by which the task should be completed.

statusstring

The status of the task.

prioritystring

The priority level of the task.

descriptionstring

The description of the task.

orgGroupIdstring

The unique identifier of the organization associated with the task.

assigneeIdstring uuid

The unique identifier of the user assigned to the task.

collaboratorIdsstring[]

The unique identifiers of the users added as collaborators on the task.

createdDatestring date-time

The date and time that the task was created.

createdBystring

The unique identifier of the user who created the task.

modifiedDatestring date-time

The date and time that the task was last modified.

modifiedBystring

The unique identifier of the user who last modified the task.

Example response

[
  {
    "issueId": "2aa71ead-0c9a-416a-8471-bdfb67c8d113",
    "taskId": "2aa71ead-0c9a-416a-8471-bdfb67c8d113",
    "taskName": "Review Policy Task",
    "deadline": "2024-12-31T01:00:00",
    "status": "Completed",
    "priority": "High",
    "description": "Review and update the policies.",
    "orgGroupId": "cb49a431-3d3d-4352-9daf-71f6ea2b3d89",
    "assigneeId": "84819d7e-8e52-4dba-957c-71f0b7c201c6",
    "createdDate": "2024-12-18T01:00:00",
    "createdBy": "00000000-0000-0000-0000-000000000000",
    "modifiedDate": "2024-12-18T01:00:00",
    "modifiedBy": "00000000-0000-0000-0000-000000000000"
  }
]