get_sp_plan() returns a single ms_plan object using the get_plan
method. list_sp_plans() returns a data frame with plan properties or a list
of ms_plan objects.
Usage
get_sp_plan(
plan_title = NULL,
plan_id = NULL,
...,
site = NULL,
site_url = NULL,
as_data_frame = FALSE,
call = caller_env()
)
list_sp_plans(
...,
filter = NULL,
n = NULL,
site = NULL,
as_data_frame = TRUE,
call = caller_env()
)Arguments
- plan_title, plan_id
Planner title or ID. Exactly one of the two arguments must be supplied.
- ...
Additional arguments passed to
get_sp_group().- site
A
ms_siteobject. Ifsiteis supplied,site_url,site_name, andsite_idare ignored.- site_url
A SharePoint site URL in the format "https://[tenant name].sharepoint.com/sites/[site name]". Any SharePoint item or document URL can also be parsed to build a site URL using the tenant and site name included in the URL.
- as_data_frame
If
TRUE(default forlist_sp_plans()), return a data frame with the plan title, id, creation date/time, and owner ID with a list column named "ms_plan" containingms_planobjects. IfFALSE(defaultget_sp_plan()), return ams_planobject or list ofms_planobjects.- call
The execution environment of a currently running function, e.g.
caller_env(). The function will be mentioned in error messages as the source of the error. See thecallargument ofabort()for more information.- filter
A string with an OData expression apply as a filter to the results. Learn more in the Microsoft Graph API documentation on using filter query parameters.
- n
Maximum number of lists, plans, tasks, or other items to return. Defaults to
NULLwhich sets n toInf.
Value
For get_sp_plan(), a ms_plan class object or a 1 row data frame
with a "ms_plan" column.
For list_sp_plans(), A list of ms_plan class objects or a data
frame with a list column named "ms_plan".