Skip to main content

signaloid-cli webhooks disable

Disable a webhook.

Synopsis

signaloid-cli webhooks disable --webhook-id <id>

Options

OptionRequiredDescription
--webhook-id <id>YesWebhook ID

Description

Disables an active webhook, temporarily stopping all event notifications. The webhook configuration is preserved and can be re-enabled at any time. This is useful for maintenance windows or troubleshooting.

Examples

signaloid-cli webhooks disable --webhook-id webhook_abc123

Notes

  • Disabled webhooks do not receive events
  • Webhook configuration and history are preserved
  • Events that occur while disabled are not queued or delivered
  • This is a shortcut for webhooks update --webhook-id <id> --disabled

Troubleshooting

Need to permanently remove a webhook

  • Use webhooks delete instead of disable
  • Deletion cannot be undone

Webhook disabled but still receiving notifications

  • Check the webhook status using webhooks get
  • Verify you're disabling the correct webhook ID
  • In-flight deliveries may still complete

See Also