googlesheets (version 0.3.0)

gs_perm_ls: List permissions for a spreadsheet

Description

This function lists all the permissions for a spreadsheet, as reported via the permissions feed of the Google Drive API. A simplified view of this information is available in the browser in the sharing dialog of a Google Sheet.

Usage

gs_perm_ls(ss, filter = NULL)

Arguments

ss

a registered Google spreadsheet, i.e. a googlesheet object

filter

character, optional; the email or unique ID of a user that, if provided, will be used to filter the results

Value

a tbl_df, one row per permission

Details

The first row corresponds to the owner of the spreadsheet. Permissions for other users or groups, if such exist, follow in additional rows.

A permission for a sheet includes the following information: the name for this permission, the email of the user or group the permission refers to, the primary role for the user, any additional roles they have, the type of user they are, the (unique) ID of the user this permission refers to, a link back to this permission, and the ETag of the permission.

Examples

Run this code
# NOT RUN {
foo <- gs_new("foo")
gs_perm_ls(foo)
gs_delete(foo)
# }
# NOT RUN {
# }

Run the code above in your browser using DataCamp Workspace