Skip to main content

signaloid-cli webhooks enable

Enable a webhook.

Synopsis

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

Options

OptionRequiredDescription
--webhook-id <id>YesWebhook ID

Description

Enables a previously disabled webhook, allowing it to receive and deliver event notifications. Once enabled, the webhook will immediately begin receiving events for its subscribed event types.

Examples

signaloid-cli webhooks enable --webhook-id webhook_abc123

Notes

  • Enabled webhooks start receiving events immediately
  • Events that occurred while the webhook was disabled are not retroactively delivered
  • This is a shortcut for webhooks update --webhook-id <id> --active

Troubleshooting

Webhook enabled but not receiving events

  • Verify the target URL is accessible
  • Check that events are subscribed using webhooks get
  • Use webhooks stats to monitor delivery attempts

Enable fails with "Webhook not found"

  • Verify the webhook ID using webhooks list
  • Ensure you have permission to modify the webhook

See Also