IntegrationsGoogle workspaceActions
Delete Google Drive permission
Delete a permission from a Drive file the connected principal can access.
drive.permissions.delete · Google Workspace · v1
Details
Scopes
https://www.googleapis.com/auth/drive
Input
| Name | Type | Required | Constraints |
|---|---|---|---|
(root) | object | Yes | additionalProperties false |
file_id | string | Yes | minLength 1; maxLength 256 |
permission_id | string | Yes | minLength 1; maxLength 256 |
Output
| Name | Type | Required | Constraints |
|---|---|---|---|
(root) | object | Yes | additionalProperties false |
Raw schema
Input
{
"type": "object",
"additionalProperties": false,
"properties": {
"file_id": {
"type": "string",
"minLength": 1,
"maxLength": 256
},
"permission_id": {
"type": "string",
"minLength": 1,
"maxLength": 256
}
},
"required": [
"file_id",
"permission_id"
]
}Output
{
"type": "object",
"additionalProperties": false,
"properties": {}
}