Smartsheet.Api.Internal.WebhookResourcesImpl.DeleteWebhook C# (CSharp) Method

DeleteWebhook() public method

Delete a webhook.

It mirrors To the following Smartsheet REST API method: DELETE /webhooks/{webhookId}

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 DeleteWebhook ( long webhookId ) : void
webhookId long the sightId
return void
        public virtual void DeleteWebhook(long webhookId)
        {
            this.DeleteResource<Webhook>("webhooks/" + webhookId, typeof(Webhook));
        }