Versions Compared

Key

  • This line was added.
  • This line was removed.
  • Formatting was changed.

Resource URL

Returns an array of tasks

Code Block
languagebash
GET /tasks
ANY /tasks?_method=get

Parameters

Table of allowed paramaters.

_pageunsigned intThe page of the list to display. For example, 5 will display the fifth page. Each page contains 10 resources.
_limitunsigned intThe maximum number of resources to return. Default is 10 and maximum is 50.
_offsetunsigned intThe position in the list of resources to return from. For example, if you had 20 resources and requested an offset of 10. Resources 10 to 19 would be returned. Offset cannot be used in conjunction with _page.
_fieldspartial stringAllows you to specify optional fields and linked objects to include in the response.
_filterspartial stringFilter the returned list of tasks using the filters below.

Filtering tasks

You can filter the returned list using the _filters parameter. You can stack filters. For example, _filters=assignee(21,3),against(company),manager(2,5)

...

Info

Using the _not suffix (e.g, id_not) on standard in filters will return results not in.

Handling the response

For handling the response, please see GET /tasks:id.

Sample Response

Code Block
languagebash
GET /tasks.json?_fields=date_created,date_started,assignee(email),type(color)&_limit=2

...