signaloid-cli webhooks enable
Enable a webhook.
Synopsis
signaloid-cli webhooks enable --webhook-id <id>
Options
| Option | Required | Description |
|---|---|---|
--webhook-id <id> | Yes | Webhook 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 statsto 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
- signaloid-cli webhooks - Webhook command overview
- signaloid-cli webhooks disable - Disable webhooks
- signaloid-cli webhooks update - Update webhook configuration
- signaloid-cli webhooks get - Check webhook status