MeetingBooster API
Requests
Objects
Enums

Tasks: List

List tasks. Note: the user making this request must have acceess to all the tasks requested

HTTP request

GET ../api/v1/tasks/list

Parameters

Parameter name Value Description
Optional parameters
assigneeEmail String If specified only return task assigned to this user. You specify the user by email
lastModified DateTime If specified only include tasks modified since this date. If lastModified is not specified all tasks will be returned.
maxResults Integer Maximum number of tasks returned. 100 by default
orderBy JSTasksOrderBy How to order the tasks returned. DUEDATE by default
skip Integer Number of tasks to skip. 0 by default

Request Body

Do not supply a request body with this http request

Response

A list of tasks. Example:
[
	JSTask,
	JSTask
]
See paging