List all tasks

GET/task/{connection_id}/task

Parameters

limitnumber default=100
offsetnumber default=0
updated_gtedate
Return only results whose updated date is equal or greater to this value (ISO-8601 / YYYY-MM-DDTHH:MM:SSZ format)
sort enum
order enum
querystring
Query string to search. eg. email address or name
project_idstring
The project ID to filter by (reference to TaskProject)
parent_idstring
The parent ID to filter by
user_idstring
The user/employee ID to filter by (reference to HrisEmployee)
statusstring
The status to filter by
fieldsstring array
Fields to return
rawstring
Raw parameters to include in the 3rd-party request. Encoded as a URL component. eg. raw parameters: foo=bar&zoo=bar -> raw=foo%3Dbar%26zoo%3Dbar
connection_idstring required
ID of the connection

Returns

idstring
created_atdate
(ISO-8601 / YYYY-MM-DDTHH:MM:SSZ format)
updated_atdate
(ISO-8601 / YYYY-MM-DDTHH:MM:SSZ format)
namestring
project_idstring
(reference to TaskProject)
parent_idstring
completed_atdate
(ISO-8601 / YYYY-MM-DDTHH:MM:SSZ format)
status enum
Valid values:
"OPENED"
"IN_PROGRESS"
"COMPLETED"
notesstring
due_atdate
(ISO-8601 / YYYY-MM-DDTHH:MM:SSZ format)
prioritystring
assigned_user_idsstring array
(reference to HrisEmployee)
creator_user_idstring
The user who created this task (reference to HrisEmployee)
follower_user_idsstring array
(reference to HrisEmployee)
group_idsstring array
(reference to HrisGroup)
tagsstring array
urlstring
attachment_idsstring array
Array of attachment IDs retrieved from StorageFile.Get endpoint
metadata array
has_childrenboolean
const options = {
  method: 'GET',
  url: 'https://api.unified.to/task/5de520f96e439b002043d8dc/task',
  headers: {
    authorization: 'bearer .....'
  },
  params: {
    limit: 50,
    offset: 0,
    updated_gte: '2026-05-29T13:08:16.456Z',
    sort: 'updated_at',
    order: 'asc',
    query: '',
    project_id: '',
    parent_id: '',
    user_id: '',
    status: '',
    fields: '',
    raw: '',
  }
};

const results = await axios.request(options);
Are we missing anything? Let us know
Was this page helpful?