Skip to content

Latest commit

 

History

History
12 lines (9 loc) · 20.7 KB

File metadata and controls

12 lines (9 loc) · 20.7 KB

ListContactGroupsRequest

Fields

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 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> 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 | Notes |
|------------------|-------------------------------------|-------|
| name | eq, ne, sw, contains | |
| type | eq | Not supported with before or after parameters |

The following logical operators are supported for combining filters:
* and
name eq 'groupName' and type eq 'STANDARD'