Skip to main content
POST
/
cocart
/
jwt
/
validate-token
Validate JWT token
curl --request POST \
  --url {protocol}://{host}/cocart/jwt/validate-token \
  --header 'Authorization: Bearer <token>'
{
  "message": "Token is valid."
}

Authorizations

Authorization
string
header
required

Bearer authentication header of the form Bearer <token>, where <token> is your auth token.

Response

Token is valid

message
string
Example:

"Token is valid."

I