deleteWebhook abstract method
- @DELETE.new('/webhooks/{webhook_id}')
- @Path.new('webhook_id') required SnowflakeType webhookId,
Delete webhook.
Permanently deletes the specified webhook. This action cannot be undone. Returns a 204 status code on successful deletion.
webhookId - The ID of the webhook.
Implementation
@DELETE('/webhooks/{webhook_id}')
Future<void> deleteWebhook({
@Path('webhook_id') required SnowflakeType webhookId,
});