| Field | Type | Required | Description | Example |
|---|---|---|---|---|
before |
OffsetDateTime | ➖ | Used to query records that have been added or updated before this time point. | 2017-01-02T02:00:00Z |
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 |
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 |
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'. Email type 'Unknown' is not supported in filter. 'OR' is not supported. Only 'AND' operator is supported. The following comparison types can be used in filter expressions: * equal: eq * not equal: ne * greater or equal: ge * less than or equal: le The following fields are filterable: * created (eq|le|ge) * productLine (eq|ne) * emailType (eq|ne) * recipient.id (eq) * productId (eq) * emailId (eq) |
productLine eq 'EVENT' |