Returns a single user setting. Try it now or see an example.
Request
HTTP request
GET https://www.googleapis.com/calendar/v3/users/me/settings/setting
Parameters
Parameter name | Value | Description |
---|---|---|
Path parameters | ||
setting |
string |
The id of the user setting. |
Authorization
This request requires authorization with at least one of the following scopes:
Scope |
---|
https://www.googleapis.com/auth/calendar.readonly |
https://www.googleapis.com/auth/calendar |
https://www.googleapis.com/auth/calendar.settings.readonly |
For more information, see the authentication and authorization page.
Request body
Do not supply a request body with this method.
Response
If successful, this method returns a Settings resource in the response body.
Examples
Note: The code examples available for this method do not represent all supported programming languages (see the client libraries page for a list of supported languages).
Java
Uses the Java client library.
import com.google.api.services.calendar.Calendar; import com.google.api.services.calendar.model.Setting; // ... // Initialize Calendar service with valid OAuth credentials Calendar service = new Calendar.Builder(httpTransport, jsonFactory, credentials) .setApplicationName("applicationName").build(); // Retrieve a single user setting Setting setting = service.settings().get("settingId").execute(); System.out.println(setting.getId() + ": " + setting.getValue());
Python
Uses the Python client library.
setting = service.settings().get(setting='settingId').execute() print '%s: %s' % (setting['id'], setting['value'])
PHP
Uses the PHP client library.
$settings = $service->settings->get('settingId'); echo $setting->getId() . ': ' . $setting->getValue();
Ruby
Uses the Ruby client library.
result = client.get_setting('settingId') print result.id + ": " + result.value
Try it!
Use the APIs Explorer below to call this method on live data and see the response.