get_personal_onedrive(
app = .microsoft365r_app_id,
scopes = c("Files.ReadWrite.All", "User.Read"),
...
)get_business_onedrive(
tenant = Sys.getenv("CLIMICROSOFT365_TENANT", "common"),
app = Sys.getenv("CLIMICROSOFT365_AADAPPID"),
scopes = c("Files.ReadWrite.All", "User.Read"),
...
)
get_sharepoint_site(
site_name = NULL,
site_url = NULL,
site_id = NULL,
tenant = Sys.getenv("CLIMICROSOFT365_TENANT", "common"),
app = Sys.getenv("CLIMICROSOFT365_AADAPPID"),
scopes = c("Group.ReadWrite.All", "Directory.Read.All", "Sites.ReadWrite.All",
"Sites.Manage.All"),
...
)
list_sharepoint_sites(
tenant = Sys.getenv("CLIMICROSOFT365_TENANT", "common"),
app = Sys.getenv("CLIMICROSOFT365_AADAPPID"),
scopes = c("Group.ReadWrite.All", "Directory.Read.All", "Sites.ReadWrite.All",
"Sites.Manage.All"),
...
)
get_team(
team_name = NULL,
team_id = NULL,
tenant = Sys.getenv("CLIMICROSOFT365_TENANT", "common"),
app = Sys.getenv("CLIMICROSOFT365_AADAPPID"),
scopes = c("Group.ReadWrite.All", "Directory.Read.All"),
...
)
list_teams(
tenant = Sys.getenv("CLIMICROSOFT365_TENANT", "common"),
app = Sys.getenv("CLIMICROSOFT365_AADAPPID"),
scopes = c("Group.ReadWrite.All", "Directory.Read.All"),
...
)
get_personal_outlook(
app = .microsoft365r_app_id,
scopes = c("Mail.Send", "Mail.ReadWrite", "User.Read"),
...
)
get_business_outlook(
tenant = Sys.getenv("CLIMICROSOFT365_TENANT", "common"),
app = .microsoft365r_app_id,
shared_mbox_id = NULL,
shared_mbox_name = NULL,
shared_mbox_email = NULL,
scopes = c("User.Read", "Mail.Send", "Mail.ReadWrite"),
...
)
get_chat(
chat_id,
tenant = Sys.getenv("CLIMICROSOFT365_TENANT", "common"),
app = .microsoft365r_app_id,
scopes = c("User.Read", "Directory.Read.All", "Chat.ReadWrite"),
...
)
list_chats(
tenant = Sys.getenv("CLIMICROSOFT365_TENANT", "common"),
app = .microsoft365r_app_id,
scopes = c("User.Read", "Directory.Read.All", "Chat.ReadWrite"),
...
)