Smartsheet.Api.Internal.SheetUpdateRequestResourcesImpl.ListSentUpdateRequests C# (CSharp) Method

ListSentUpdateRequests() public method

Gets a list of all Sent Update Requests that have future schedules associated with the specified Sheet.

It mirrors To the following Smartsheet REST API method: GET /sheets/{sheetId}/sentupdaterequests

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 ListSentUpdateRequests ( long sheetId, PaginationParameters paging ) : PaginatedResult
sheetId long the Id of the sheet
paging Smartsheet.Api.Models.PaginationParameters paging parameters for the list
return PaginatedResult
        public virtual PaginatedResult<SentUpdateRequest> ListSentUpdateRequests(long sheetId, PaginationParameters paging)
        {
            IDictionary<string, string> parameters = new Dictionary<string, string>();
            if (paging != null)
            {
                parameters = paging.toDictionary();
            }
            return this.ListResourcesWithWrapper<SentUpdateRequest>("sheets/" + sheetId + "/sentupdaterequests" + QueryUtil.GenerateUrl(null, parameters));
        }