Get login token

Get login token

Returns a login token for the user. You can use any Contributor account credentials for the Token Login Mechanism.

Path Parameters
  • user-login
    string
    required

    The login of the user to get the login token for.

Query Parameters
  • exp
    string

    An ISO 8601 timestamp of the token expiration date. GMT timezone. The default value is 30 minutes from the current moment.

  • muse
    boolean

    Whether to consume the token on the first use. If true, the token can be used unlimited times until it hits the expiration date. false by default.

Responses
GET/users/{user-login}/tokens

{
  "expirationDate": "2026-06-15T14:11:50.283Z",
  "token": "…",
  "userName": "…",
  "isMultiUse": true
}