Bridgit Logo
Bridgit APITokenValidate

Validate an API token

Validates if an API token is valid, not expired, and not deleted

POST
/api/token/validate
Authorization<token>

API token for authentication (format: Bearer {token})

In: header

Response Body

curl -X POST "https://api-test.hibridgit.com/api/token/validate"
{
  "status": 200,
  "result": "OK",
  "message": "Token is valid"
}
{
  "status": 401,
  "result": "ERR",
  "message": "Token is not valid, it cannot be found"
}