Delete a sandbox.
Salesforce CLI marks the org for deletion in the production org that contains the sandbox licenses and then deletes all local references to the org from your computer. Specify a sandbox with either the username you used when you logged into it, or the alias you gave the sandbox when you created it. Run "<%= config.bin %> org list" to view all your orgs, including sandboxes, and their aliases. Both the sandbox and the associated production org must already be authenticated with the CLI to successfully delete the sandbox.
-
Delete a sandbox with alias my-sandbox:
<%= config.bin %> <%= command.id %> --target-org my-sandbox
-
Specify a username instead of an alias:
<%= config.bin %> <%= command.id %> --target-org [email protected]
-
Delete the sandbox without prompting to confirm:
<%= config.bin %> <%= command.id %> --target-org my-sandbox --no-prompt
Username or alias of the target org. Not required if the target-org
configuration variable is already set.
Don't prompt the user to confirm the deletion.
Are you sure you want to delete the sandbox with name: %s?
Successfully marked sandbox %s for deletion.
There is no sandbox with the username %s.
The org with username: %s is not known by the CLI to be a sandbox
Re-authenticate the sandbox with the CLI and try again. Ensure the CLI has authenticated with the sandbox's production org.
Unable to determine the username of the org to delete. Specify the username with the --target-org | -o flag.