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

GetSentUpdateRequest() public method

Gets the specified sent update request on the Sheet.

It mirrors To the following Smartsheet REST API method: GET /sheets/{sheetId}/sentupdaterequests/{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 GetSentUpdateRequest ( long sheetId, long sentUpdateRequestId ) : SentUpdateRequest
sheetId long the Id of the sheet
sentUpdateRequestId long the sent update request Id
return Smartsheet.Api.Models.SentUpdateRequest
        public virtual SentUpdateRequest GetSentUpdateRequest(long sheetId, long sentUpdateRequestId)
        {
            return this.GetResource<SentUpdateRequest>("sheets/" + sheetId + "/sentupdaterequests/" + sentUpdateRequestId, typeof(SentUpdateRequest));
        }