Skip to end of metadata
Go to start of metadata

You are viewing an old version of this page. View the current version.

Compare with Current View Page History

Version 1 Current »

How do I reset or re-acquire a user's authentication token?

Should you require resetting or re-acquiring a user's authentication token (the authentication token is provided in our API response when the user is provisioned in our system), you may make a GET request for a new user authentication token. This will effectively invalidate the authentication token previously assigned to the user.

GET ORGANIZATION_ID}/users/{VALIDIC_USER_ID}/refresh_token.json?access_token={ACCESS_TOKEN}
{
    "code": 200,
    "message": "Ok",
    "user": {
        "id_": "51552cd7fded0807c4000017",
        "uid": "1234567890",
        "authentication_token": "uXek7RK2wUnm84BJRv5Q"
    }
}
  • No labels