Skip to content

Token

The Token resource allows you to check whether your token is validated.

Info

To get a token, you need to make a POST request with your license key to the /license endpoint.


Validate Token

GET /token/check

Check if a token is valid without accessing any data on the server.

Request

Header Parameters
X-SecureSuite-Token
string
The token received from a successful license key verification, e.g., 12347b68c544113bc4notvalid358ffd4ba7f254e39c4a842cefed748

Response

Upon successful validation, returns an authorization token that can be used in subsequent Member-only requests.

Properties

Media type: application/json

status
string
Shows when validation succeeds.
error
string
Shows when validation fails.

Example

Request cURL
curl -X GET ^
  -H "X-SecureSuite-Token: 15638e93802ti234" ^
  "https://workbench.cisecurity.org/api/vendor/v1/token/check"
{
  "status": "Token Validation Check Successful"
}
{
  "error": "Invalid or expired security token"
}