Click or drag to resize

FolderResources Interface

This interface provides methods to access Folder resources.

Thread Safety: Implementation of this interface must be thread safe.

Namespace:  Smartsheet.Api
Assemblies:   smartsheet-csharp-sdk (in smartsheet-csharp-sdk.dll) Version: 2.126.0
  smartsheet-csharp-sdk (in smartsheet-csharp-sdk.dll) Version: 2.126.0
Syntax
public interface FolderResources

The FolderResources type exposes the following members.

Properties
  NameDescription
Public propertySheetResources

Return the SheetResources object that provides access to Sheet resources associated with Folder resources.

Top
Methods
  NameDescription
Public methodCopyFolder

Creates a copy of the specified Folder.

It mirrors to the following Smartsheet REST API method:
POST /folders/{folderId}/copy

Public methodCreateFolder

Creates a Folder in the specified Folder.

It mirrors to the following Smartsheet REST API method:
POST /folders/{folderId}/folders

Public methodDeleteFolder

Deletes a folder.

It mirrors to the following Smartsheet REST API method:
DELETE /folders/{folderId}

Public methodGetFolder

Gets the specified Folder (and lists its contents).

It mirrors to the following Smartsheet REST API method: GET /folders/{folderId}

Public methodListFolders

Gets a list of the top-level child Folders within the specified Folder.

Remarks
This operation supports pagination of results. For more information, see Paging.

It mirrors to the following Smartsheet REST API method:
GET /folders/{folderId}/folders

Public methodMoveFolder

Moves the specified Folder to another location.

It mirrors to the following Smartsheet REST API method:
POST /folders/{folderId}/move

Public methodUpdateFolder

Updates a folder.

It mirrors to the following Smartsheet REST API method: PUT /folders/{folderId}

Top
See Also