Skip to main content
Now that the walkthrough is done, take a moment to review the PATs on your account. Token management endpoints require a session JWT — a PAT can’t manage other PATs. If the JWT from step 1 has expired (they last one hour), sign in again first.

List your tokens

Secrets are never returned again — only metadata:

Rotate a token

New secret, same id and scopes. The old secret is invalidated immediately:
The response has the same shape as the create response — including the one-time token field. Save it before it scrolls out of your terminal.

Revoke a token

Idempotent — revoking an already-revoked token is a no-op:

Limits

  • Up to 25 active tokens per user
  • Up to 365 days per token
  • Names must be unique among your active tokens

What’s next