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

DeleteUpdateRequest() public method

Terminates the future scheduled delivery of the Update Request specified in the URL.

It mirrors To the following Smartsheet REST API method: DELETE /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 DeleteUpdateRequest ( long sheetId, long updateRequestId ) : void
sheetId long the sheetId
updateRequestId long the updateRequestId
return void
        public virtual void DeleteUpdateRequest(long sheetId, long updateRequestId)
        {
            this.DeleteResource<UpdateRequest>("sheets/" + sheetId + "/updaterequests/" + updateRequestId, typeof(UpdateRequest));
        }