Verify Jwt Token
This process validates the JWT token sent in and returns information about it. Secret Hmac Required. Cache Time 1 Hour.
POST
/Auth/Verify/Token
curl \
--request POST 'https://wapi.strandvision.com/v1.0/Auth/Verify/Token' \
--header "X-ApiKey: $API_KEY" \
--header "Authorization: X-apidate $ACCESS_TOKEN" \
--header "Authorization: X-apihmac $ACCESS_TOKEN" \
--header "Content-Type: application/json" \
--data '{"Token":"base 64 encoded stuffs"}'
Request examples
{
"Token": "base 64 encoded stuffs"
}
Response examples (200)
{
"Valid": 1,
"Custno": 10028,
"Logind": 1,
"Parent": 10028,
"LoginIp": "192.168.200.20",
"Message": "Welcome Nick. Your last login was 28 days ago",
"LastName": "Doe",
"FirstName": "John",
"LoginTime": 20250101000000,
"PrevLogin": 20240101000000
}