| Field | Type | Required | Description | Example |
|---|---|---|---|---|
limit |
Optional<Long> | ➖ | The maximum number of records to return per page. | 100 |
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: * lastModified * lastName * firstName * company * title * order |
lastName:DESC,company:ASC |
locale |
Optional<String> | ➖ | Locale code in IETF Language tag format. Indicates desired locale of return values. | en-US |
filter |
Optional<String> | ➖ | A filter query string narrows search results and supports the combination of logical and comparison operators. The filter adheres to the pattern filter='field' comparisonType 'value'. If the "match" filter is passed, the endpoint will return a relevance score for each attendee in the list. Higher scores represent a higher relevance to the filter string. These are the comparison types that can be used in filter expressions: * equal: eq * not equal: ne * greater than: gt * greater or equal: ge * less than: lt * less than or equal: le * starts with: sw * contains a value: contains * match a term: match * includes value(s): in The following fields are filterable: * category.id (eq|ne) * category.name (eq|ne|sw|contains) * code (eq|ne|sw|contains) * company (eq|ne|sw|contains) * contact.id (eq|ne) * email (eq|ne|sw|contains|match) * event.id (eq|ne) * featured (eq|ne) * firstName (eq|ne|sw|contains|match) * id (eq|ne|in) * lastModified (eq|ne|gt|ge|lt|le) * lastName (eq|ne|sw|contains|match) * title (eq|ne|sw|contains) * visibility (eq|ne) The following operators are available: * and * or |
event.id eq '04ca6ae2-0dc3-487b-953e-86d6abbdf7d3' |