Use the ably integrations delete command to delete an integration rule.
Synopsis
ably integrations delete <integration-id> [options]Arguments
integration-id Required
Required
The ID of the integration rule to delete.
Options
--app
The app ID that the integration rule belongs to. If not specified, the currently selected app is used.
--force | -f
Skip the confirmation prompt and delete the integration rule immediately. Required when using --json.
--json
Output results as compact JSON. Mutually exclusive with --pretty-json.
--pretty-json
Output results in formatted JSON. Mutually exclusive with --json.
--verbose | -v
Enable verbose logging. Can be combined with --json or --pretty-json.
Examples
Delete an integration rule by ID:
ably integrations delete aBcDe1Delete an integration rule without a confirmation prompt:
ably integrations delete aBcDe1 --forceDelete an integration rule for a specific app:
ably integrations delete integration123 --app "My App"Delete an integration rule and output the result in JSON format:
ably integrations delete integration123 --jsonSee also
- Integrations — Explore all
ably integrationscommands. - CLI reference — Full list of available commands.