Get TaskGroups
GET
/api/v1.0/taskgroups
This endpoint fetch the list of taskgroups for the team member
Query parameters
-
project_id string Required
Project ID
-
archived boolean
Archived
-
limit string
No of records per page
-
offset string
Record Offset
-
sort string
Sorting order, default is ascending
Values are
ascending
ordescending
.
Responses
-
• 200 object
Success Response
-
• 401
The client request has not been completed because it lacks valid authentication credentials for the requested resource.
-
• 403
The client does not have access rights to the content.
-
• 405
The request method is known by the server but is not supported by the target resource.
GET /api/v1.0/taskgroups
curl \
-X GET https://openapi.niftypm.com/api/v1.0/taskgroups?project_id=string \
-H "Authorization: Bearer $ACCESS_TOKEN"
Response example (200)
{
"items": [
{
"id": "string",
"name": "string",
"order": 42.0,
"project_id": "string",
"color": "string",
"milestone": "string",
"is_completion_group": true,
"assignees": [
"string"
],
"hidden": [
"string"
],
"rollup": {}
}
],
"hasMore": false
}