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

UpdateUpdateRequest() public method

Changes the specified Update Request for the Sheet.

It mirrors To the following Smartsheet REST API method: PUT /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 UpdateUpdateRequest ( long sheetId, UpdateRequest updateRequest ) : UpdateRequest
sheetId long the sheet Id
updateRequest Smartsheet.Api.Models.UpdateRequest the UpdateRequest to update
return Smartsheet.Api.Models.UpdateRequest
        public virtual UpdateRequest UpdateUpdateRequest(long sheetId, UpdateRequest updateRequest)
        {
            return this.UpdateResource("sheets/" + sheetId + "/updaterequests/" + updateRequest.Id, typeof(UpdateRequest), updateRequest);
        }