Smartsheet.Api.Internal.UserSheetResourcesImpl.ListOrgSheets C# (CSharp) Method

ListOrgSheets() public method

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

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

if any argument is null or empty string if there is any problem with the REST API request if there is any problem with the REST API authorization (access token) if the resource cannot be found if the REST API service is not available (possibly due To rate limiting) if there is any other error during the operation
public ListOrgSheets ( PaginationParameters paging, System.DateTime modifiedSince ) : PaginatedResult
paging PaginationParameters
modifiedSince System.DateTime
return PaginatedResult
        public virtual PaginatedResult<Sheet> ListOrgSheets(PaginationParameters paging, DateTime? modifiedSince)
        {
            IDictionary<string, string> parameters = new Dictionary<string, string>();
            if (paging != null)
            {
                parameters = paging.toDictionary();
            }
            if (modifiedSince != null)
            {
                parameters.Add("modifiedSince", ((DateTime)modifiedSince).ToUniversalTime().ToString("o"));
            }
            return this.ListResourcesWithWrapper<Sheet>("users/sheets" + QueryUtil.GenerateUrl(null, parameters));
        }