First, obtain an access token to get started here.
Delete one or more webhooks by their unique IDs. This mutation permanently removes the specified webhooks and stops sending event notifications. Use this mutation to clean up unused or obsolete webhooks. The mutation returns a boolean indicating success or failure.
Schema
typeMutation {""" Mutation to delete one or more webhooks based on their unique IDs. """ deleteWebhooks(""" A list of IDs representing the webhooks to delete. """ ids: [ID!]! ): Boolean!}