Acl: delete

Deletes an access control rule. Try it now or see an example.

Request

HTTP request

DELETE https://www.googleapis.com/calendar/v3/calendars/calendarId/acl/ruleId

Parameters

Parameter name Value Description
Path parameters
calendarId string Calendar identifier. To retrieve calendar IDs call the calendarList.list method. If you want to access the primary calendar of the currently logged in user, use the "primary" keyword.
ruleId string ACL rule identifier.

Authorization

This request requires authorization with at least one of the following scopes:

Scope
https://www.googleapis.com/auth/calendar
https://www.googleapis.com/auth/calendar.acls

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 an empty 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).

Uses the Java client library.

import com.google.api.services.calendar.Calendar;

// ...

// Initialize Calendar service with valid OAuth credentials
Calendar service = new Calendar.Builder(httpTransport, jsonFactory, credentials)
    .setApplicationName("applicationName").build();

// Delete access rule
service.acl().delete('primary', "ruleId").execute();

Uses the Python client library.

service.acl().delete(calendarId='primary', ruleId='ruleId').execute()

Uses the PHP client library.

$service->acl->delete('primary', 'ruleId');

Uses the Ruby client library.

result = client.delete_acl('primary', 'ruleId')