github.com/iqoqo/nomad@v0.11.3-0.20200911112621-d7021c74d101/website/pages/docs/commands/acl/token-info.mdx (about) 1 --- 2 layout: docs 3 page_title: 'Commands: acl token info' 4 sidebar_title: token info 5 description: > 6 The token info command is used to fetch information about an existing ACL 7 token. 8 --- 9 10 # Command: acl token info 11 12 The `acl token info` command is used to fetch information about an existing ACL token. 13 14 ## Usage 15 16 ```plaintext 17 nomad acl token info <token_accessor_id> 18 ``` 19 20 The `acl token info` command requires an existing token's AccessorID. 21 22 ## General Options 23 24 @include 'general_options.mdx' 25 26 ## Examples 27 28 Fetch information about an existing ACL token: 29 30 ```shell-sessionnomad acl token info d532c40a-30f1-695c-19e5-c35b882b0efd 31 Accessor ID = d532c40a-30f1-695c-19e5-c35b882b0efd 32 Secret ID = 85310d07-9afa-ef53-0933-0c043cd673c7 33 Name = my token 34 Type = client 35 Global = false 36 Policies = [foo bar] 37 Create Time = 2017-09-15 05:04:41.814954949 +0000 UTC 38 Create Index = 8 39 Modify Index = 8 40 ```