github.com/argoproj/argo-cd@v1.8.7/docs/user-guide/commands/argocd_account_get.md (about) 1 ## argocd account get 2 3 Get account details 4 5 ### Synopsis 6 7 Get account details 8 9 ``` 10 argocd account get [flags] 11 ``` 12 13 ### Examples 14 15 ``` 16 # Get the currently logged in account details 17 argocd account get 18 19 # Get details for an account by name 20 argocd account get --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 get 28 -o, --output string Output format. One of: json|yaml|wide|name (default "wide") 29 ``` 30 31 ### Options inherited from parent commands 32 33 ``` 34 --auth-token string Authentication token 35 --client-crt string Client certificate file 36 --client-crt-key string Client certificate key file 37 --config string Path to Argo CD config (default "/home/user/.argocd/config") 38 --grpc-web Enables gRPC-web protocol. Useful if Argo CD server is behind proxy which does not support HTTP2. 39 --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. 40 -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) 41 --insecure Skip server certificate and domain verification 42 --logformat string Set the logging format. One of: text|json (default "text") 43 --loglevel string Set the logging level. One of: debug|info|warn|error (default "info") 44 --plaintext Disable TLS 45 --port-forward Connect to a random argocd-server port using port forwarding 46 --port-forward-namespace string Namespace name which should be used for port forwarding 47 --server string Argo CD server address 48 --server-crt string Server certificate file 49 ``` 50 51 ### SEE ALSO 52 53 * [argocd account](argocd_account.md) - Manage account settings 54