github.com/argoproj/argo-cd@v1.8.7/docs/user-guide/commands/argocd_account_delete-token.md (about) 1 ## argocd account delete-token 2 3 Deletes account token 4 5 ### Synopsis 6 7 Deletes account token 8 9 ``` 10 argocd account delete-token [flags] 11 ``` 12 13 ### Examples 14 15 ``` 16 # Delete token of the currently logged in account 17 argocd account delete-token ID 18 19 # Delete token of the account with the specified name 20 argocd account generate-token --account <account-name> 21 ``` 22 23 ### Options 24 25 ``` 26 -a, --account string Account name. Defaults to the current account. 27 -h, --help help for delete-token 28 ``` 29 30 ### Options inherited from parent commands 31 32 ``` 33 --auth-token string Authentication token 34 --client-crt string Client certificate file 35 --client-crt-key string Client certificate key file 36 --config string Path to Argo CD config (default "/home/user/.argocd/config") 37 --grpc-web Enables gRPC-web protocol. Useful if Argo CD server is behind proxy which does not support HTTP2. 38 --grpc-web-root-path string Enables gRPC-web protocol. Useful if Argo CD server is behind proxy which does not support HTTP2. Set web root. 39 -H, --header strings Sets additional header to all requests made by Argo CD CLI. (Can be repeated multiple times to add multiple headers, also supports comma separated headers) 40 --insecure Skip server certificate and domain verification 41 --logformat string Set the logging format. One of: text|json (default "text") 42 --loglevel string Set the logging level. One of: debug|info|warn|error (default "info") 43 --plaintext Disable TLS 44 --port-forward Connect to a random argocd-server port using port forwarding 45 --port-forward-namespace string Namespace name which should be used for port forwarding 46 --server string Argo CD server address 47 --server-crt string Server certificate file 48 ``` 49 50 ### SEE ALSO 51 52 * [argocd account](argocd_account.md) - Manage account settings 53