Every task query requires at least one type and at least one state, as shown in these examples.
Parameter | Description | Operators | Values | Type | Example |
---|---|---|---|---|---|
state | returns tasks in a certain state | in | one or more task states (Outstanding, Completed, Denied, Cancelled, Unread) selected from the suggestion dropdown | string | ::state in ('Outstanding', 'Completed') and type in ('ToDo') |
type | returns tasks of a certain type | in | one or more task types (ToDo, vCalendar, Authorization, Notification, Assignment) selected from the suggestion dropdown | string | ::type in ('Notification', 'Authorization', 'Assignment') and state in ('Outstanding') |
date | returns tasks between certain dates | between | dates | date | ::date between '2018-01-01' and '2018-02-01' and state in ('Outstanding') and type in ('ToDo') |
assignedTo | returns tasks assigned to the specified contacts | in | one or more contacts selected from the suggestion dropdown | string | ::assignedTo in ('Fiona') and state in ('Outstanding') and type in ('ToDo') |
assignedFrom | returns assigned from the specified contacts | in | one or more contacts selected from the suggestion dropdown | string | ::assignedFrom in ('Oberon') and state in ('Outstanding') and type in ('ToDo') |