This endpoint fetch the list of tasks for the team member.
Query parameters
-
Filter tasks by project. Returns only tasks belonging to this project.
-
Filter tasks by task group. Returns only tasks within this task group.
-
Fetch a single task by its unique identifier.
-
Filter tasks by member. Returns tasks assigned to or involving this member.
-
Filter tasks linked to a specific meeting.
-
Filter tasks associated with a specific milestone.
-
Filter tasks completed by this member (user/member ID).
-
When true, returns only archived tasks. When false, returns only non-archived tasks. Pass as query string "true" or "false".
Values are
trueorfalse. Default value isfalse. -
When true, response includes archived tasks along with active ones. Use with archived=false to get both active and archived in one call.
Values are
trueorfalse. Default value istrue. -
Filter by completion status. "true" = completed tasks only, "false" = incomplete only. Omit for all tasks.
Values are
trueorfalse. -
Maximum number of tasks to return per page. Used for pagination.
Minimum value is
1, maximum value is100. Default value is25. -
Number of records to skip. Used with limit for pagination: page 1 = 0, page 2 = limit, page 3 = 2*limit, etc.
Minimum value is
0. Default value is0. -
Sort field and direction. Format:
fieldName:DIRECTION. Allowed fields: dueDate, archivedOn, completedOn. Direction: ASC or DESC. Example: completedOn:DESC sorts by completion date newest first.Values are
dueDate:ASC,dueDate:DESC,archivedOn:ASC,archivedOn:DESC,completedOn:ASC, orcompletedOn:DESC. -
Filter tasks with due date on or after this date. ISO 8601 format (YYYY-MM-DD or full datetime).
-
Filter tasks with due date on or before this date. ISO 8601 format (YYYY-MM-DD or full datetime).
-
Filter archived tasks archived on or after this date. ISO 8601 format.
-
Filter archived tasks archived on or before this date. ISO 8601 format.
-
Filter completed tasks with completion date on or after this date. ISO 8601 format.
-
Filter completed tasks with completion date on or before this date. ISO 8601 format.
-
When true, response includes subtasks under each task. Pass as "true" or "false".
Values are
trueorfalse. -
Secondary sort order when order field is used. Use with order param for consistent ordering.
Values are
ascendingordescending. -
Comma-separated list of project IDs. Returns tasks that belong to any of these projects. Example: "id1,id2,id3".
-
Filter tasks by assignee. Returns tasks assigned to any of the given member/user IDs. Send as multiple query params: assignee_ids[]=id1&assignee_ids[]=id2.
curl \
--request GET 'https://openapi.niftypm.com/api/v1.0/tasks' \
--header "Authorization: Bearer $ACCESS_TOKEN"
{
"tasks": [
{}
],
"hasMore": false
}