public interface EventResources
| Modifier and Type | Method and Description |
|---|---|
EventResult |
listEvents(Object since,
String streamPosition,
Integer maxCount,
Boolean numericDates)
List all events.
|
EventResult listEvents(Object since, String streamPosition, Integer maxCount, Boolean numericDates) throws SmartsheetException
List all events.
It mirrors to the following Smartsheet REST API method: GET /events
since - Starting time for events to return. You must pass in a value for either since or
streamPosition and never both.streamPosition - Indicates next set of events to return. Use value of nextStreamPosition returned
from the previous call. You must pass in a value for either since or streamPosition
and never both.maxCount - Maximum number of events to return as response to this call. Must be between
1 through 10,000 (inclusive).numericDates - If true, dates are accepted and returned in Unix epoch time (milliseconds since midnight
on January 1, 1970 in UTC time). Default is false, which means ISO-8601 formatIllegalArgumentException - if any argument is null or empty stringInvalidRequestException - if there is any problem with the REST API requestAuthorizationException - if there is any problem with the REST API authorization (access token)ResourceNotFoundException - if the resource cannot be foundServiceUnavailableException - if the REST API service is not available (possibly due to rate limiting)SmartsheetException - if there is any other error during the operationCopyright © 2014–2019 Smartsheet. All rights reserved.