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

GetUpdateRequest() public method

Gets the specified Update Request for the Sheet that has a future schedule.

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

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 GetUpdateRequest ( long sheetId, long updateRequestId ) : UpdateRequest
sheetId long the Id of the sheet
updateRequestId long the update request Id
return Smartsheet.Api.Models.UpdateRequest
        public virtual UpdateRequest GetUpdateRequest(long sheetId, long updateRequestId)
        {
            return this.GetResource<UpdateRequest>("sheets/" + sheetId + "/updaterequests/" + updateRequestId, typeof(UpdateRequest));
        }