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

DeleteSentUpdateRequest() public method

Deletes the specified sent update request.

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

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 DeleteSentUpdateRequest ( long sheetId, long sentUupdateRequestId ) : void
sheetId long the Id of the sheet
sentUupdateRequestId long
return void
        public virtual void DeleteSentUpdateRequest(long sheetId, long sentUupdateRequestId)
        {
            this.DeleteResource<SentUpdateRequest>("sheets/" + sheetId + "/sentupdaterequests/" + sentUupdateRequestId, typeof(SentUpdateRequest));
        }