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
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"
}
]