Table of Contents

Interface UserSheetResources

Namespace
Smartsheet.Api
Assembly
smartsheet-csharp-sdk.dll

This interface provides methods to access Sheet resources of User.

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

public interface UserSheetResources

Methods

ListOrgSheets(PaginationParameters?, DateTime?)

List of all Sheets owned by the members of the account (organization).

It mirrors to the following Smartsheet REST API method: GET /users/sheets

PaginatedResult<Sheet> ListOrgSheets(PaginationParameters? paging = null, DateTime? modifiedSince = null)

Parameters

paging PaginationParameters

the pagination

modifiedSince DateTime?

only return sheets modified on or after the specified date

Returns

PaginatedResult<Sheet>

the list of all Sheets owned by the members of the account (organization).

Exceptions

InvalidOperationException

if any argument is null or empty string

InvalidRequestException

if there is any problem with the REST API request

AuthorizationException

if there is any problem with the REST API authorization (access token)

ResourceNotFoundException

if the resource cannot be found

ServiceUnavailableException

if the REST API service is not available (possibly due to rate limiting)

SmartsheetException

if there is any other error during the operation