public interface HomeResources
This interface provides methods to access Home resources.
Thread Safety: Implementation of this interface must be thread safe.
| Modifier and Type | Method and Description |
|---|---|
HomeFolderResources |
folderResources()
Return the HomeFolderResources object that provides access to Folder resources under home.
|
Home |
getHome(EnumSet<SourceInclusion> includes)
Get a nested list of all Home objects, including sheets, workspaces and folders, and optionally reports and/or
templates, as shown on the Home tab.
|
Home |
getHome(EnumSet<SourceInclusion> includes,
EnumSet<SourceExclusion> excludes)
Get a nested list of all Home objects, including sheets, workspaces and folders, and optionally reports and/or
templates, as shown on the Home tab.
|
Home getHome(EnumSet<SourceInclusion> includes) throws SmartsheetException
Get a nested list of all Home objects, including sheets, workspaces and folders, and optionally reports and/or templates, as shown on the Home tab.
It mirrors to the following Smartsheet REST API method: GET /home
includes - used to specify the optional objects to include.IllegalArgumentException - if any argument is null or empty stringInvalidRequestException - if there is any problem with the REST API requestAuthorizationException - if there is any problem with the REST API authorization (access token)ResourceNotFoundException - if the resource cannot be foundServiceUnavailableException - if the REST API service is not available (possibly due to rate limiting)SmartsheetException - if there is any other error during the operationHome getHome(EnumSet<SourceInclusion> includes, EnumSet<SourceExclusion> excludes) throws SmartsheetException
Get a nested list of all Home objects, including sheets, workspaces and folders, and optionally reports and/or templates, as shown on the Home tab.
It mirrors to the following Smartsheet REST API method: GET /home
includes - used to specify the optional objects to include.excludes - used to specify the optional objects to exclude.IllegalArgumentException - if any argument is null or empty stringInvalidRequestException - if there is any problem with the REST API requestAuthorizationException - if there is any problem with the REST API authorization (access token)ResourceNotFoundException - if the resource cannot be foundServiceUnavailableException - if the REST API service is not available (possibly due to rate limiting)SmartsheetException - if there is any other error during the operationHomeFolderResources folderResources()
Return the HomeFolderResources object that provides access to Folder resources under home.
Copyright © 2014–2019 Smartsheet. All rights reserved.