We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 001e596 commit c53e695Copy full SHA for c53e695
docs/gl_objects/personal_access_tokens.rst
@@ -58,8 +58,8 @@ Rotate a personal access token and retrieve its new value::
58
token.rotate()
59
print(token.token)
60
# or directly using a token ID
61
- new_token = gl.personal_access_tokens.rotate(42)
62
- print(new_token.token)
+ new_token_dict = gl.personal_access_tokens.rotate(42)
+ print(new_token_dict)
63
64
Create a personal access token for a user (admin only)::
65
0 commit comments