Table of Contents | ||||
---|---|---|---|---|
|
...
For a sample proxy service that illustrates how to work with settings resources, see Sample configuration.
Operation details
Following is more information about each of the operations.
Get Settings Anchor getSettings getSettings
To
...
get
...
settings,
...
use googlecalendar.getSettings
...
and specify
...
the
...
relevant
...
properties.
Code Block | ||||
---|---|---|---|---|
| ||||
<googlecalendar.getSettings> <setting>{$ctx:setting}</setting> </googlecalendar.getSettings> |
Properties
setting : The id of the user setting.
Sample request
Following is a sample REST request that can be handled by the getSettings
operation.
Code Block | ||
---|---|---|
| ||
{ "apiUrl":"%s(apiUrl)", "accessToken": "%s(accessToken)", "setting": "%s(setting)" } |
List Settings Anchor listSettings listSettings
To list settings, use googlecalendar.listSettings and specify the relevant properties.
Code Block | ||
---|---|---|
| ||
<googlecalendar.listSettings> <maxResults>{$ctx:maxResults}</maxResults> <pageToken>{$ctx:pageToken}</pageToken> <syncToken>{$ctx:syncToken}</syncToken> </googlecalendar.listSettings> |
Properties
maxResults : optional- Maximum number of entries returned on one result page.
pageToken : optional- Token specifying which result page to return.
syncToken : optional- Token obtained from the nextSyncToken field returned on the last page of results from the previous list request.
...