glab-token-revoke - Man Page
Revoke user, group or project access tokens
Synopsis
glab token revoke Ā [flags]
Description
Revoke an user, group or project access token. If multiple tokens with the same name exist, you can specify the ID of the token.
The output format can be either "JSON" or "text". The JSON output will show the meta information of the revoked token. The normal text output is a description of the revoked token name and ID.
Administrators can revoke personal access tokens belonging to other users.
Options
-g, --group="" Revoke group access token. Ignored if a user or repository argument is set.
-F, --output="text" Format output as: text, json. 'text' provides the name and ID of the revoked token; 'json' outputs the token with metadata.
- -R, ā--repo="" Select another repository. Can use either OWNER/REPO or GROUP/NAMESPACE/REPO
- format. Also accepts full URL or Git URL.
-U, --user="" Revoke personal access token. Use @me for the current user.
Options Inherited from Parent Commands
--help[=false] Show help for this command.
Example
# Revoke a project access token of current project glab token revoke my-project-token # Revoke a project access token of a specific project glab token revoke --repo user/my-repo my-project-token # Revoke a group access token glab token revoke --group group/sub-group my-group-token # Revoke my personal access token glab token revoke --user @me my-personal-token # Revoke a personal access token of another user (administrator only) glab token revoke --user johndoe johns-personal-token