Validate an authentication token

Send a REST request to verify if a token is valid.

Prerequisites

  • The token you are validating.
  • REST client or access to Automation Anywhere Swagger files for your Control Room.
  • URL: http://<your_control_room_url>/v1/authentication/token
  • Method: GET

Procedure

  1. Enter the following parameters to the request URL.
    http://<your_control_room_url>/v1/authentication/token?token=<token>
  2. Send the request.
    • In a REST Client, click SEND.
    • In the Swagger interface, click Execute.
    Response body:
    The token is valid.
    {
      "valid": true
    }
    The token is invalid.
    {
      "valid": false
    }