Google Calendar
GOOGLECALENDAR_LIST_ACL_RULES
Retrieves the list of access control rules (ACLs) for a specified calendar, providing the necessary 'rule_id' values required for updating specific ACL rules.
Remote googlecalendar
Other tools also called GOOGLECALENDAR_LIST_ACL_RULES?
See providers with this name
Input Schema
{
"type": "object",
"properties": {
"page_token": {
"type": [
"string",
"null"
],
"default": null,
"description": "Token specifying which result page to return. Optional.\nExample: \" nextPageToken_value\""
},
"sync_token": {
"type": [
"string",
"null"
],
"default": null,
"description": "Token obtained from the nextSyncToken field returned on the last page of a previous list operation. It makes the result of this list operation contain only entries that have changed since then. Optional. The default is to retrieve all entries.\nExample: \"nextSyncToken_value\""
},
"calendar_id": {
"type": "string",
"description": "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.\nExample: \"primary\""
},
"max_results": {
"anyOf": [
{
"type": "integer"
},
{
"type": "null"
}
],
"default": null,
"description": "Maximum number of entries returned on one result page. Optional. The default is 100.\nExample: 10"
},
"show_deleted": {
"type": [
"boolean",
"null"
],
"default": null,
"description": "Whether to include deleted ACLs in the result. Optional. The default is False.\nExample: false"
}
}
}