| Field | Type | Required | Description | Example |
|---|---|---|---|---|
after |
OffsetDateTime | ➖ | Used to query records that have been added or updated after this time point. Default to the beginning of time of the data store. | 2017-01-02T02:00:00Z |
before |
OffsetDateTime | ➖ | Used to query records that have been added or updated before this time point. | 2017-01-02T02:00:00Z |
limit |
Optional<Long> | ➖ | The maximum number of attendance duration records returned per page. | |
token |
Optional<String> | ➖ | The continuation token returned from a previous class. This must be a valid UUID v4 if provided. This will override any other pageable parameters provided. |
0e28af57-511f-47ab-ae46-46cd1ca51a1a |
sort |
Optional<String> | ➖ | The sort order passed as a parameter, used to control the order of the search results as a priority ordered list of sorts There are two orders: * ascending: ASC * descending: DESC The following fields are sortable: * event * session * attendee * type * firstSeen * duration * lastModified - default |
start:DESC,title:ASC |
filter |
Optional<String> | ➖ | Use filter query parameters to limit results to data that matches your criteria. See Filters for details. Supported fields and operators are listed below: | Field | Operators | |-------------|------------------------------------| | id | eq, ne || event.id | eq, ne, in || session.id | eq, ne, in || attendee.id | eq, ne, in || type | contains, eq, ne, in || deleted | eq, ne || firstSeen | eq, ne, lt, le, gt, ge || lastSeen | eq, ne, lt, le, gt, ge || duration | eq, ne, lt, le, gt, ge || created | eq, ne, lt, le, gt, ge |The following logical operators are supported for combining filters: * and * or |
firstSeen gt '2020-02-07T12:00:00.000Z' and session.id = '0e2f583e-62ae-40d8-9b5c-b8e67a6ba1ab' |