validate JWT With Id
GET {{baseUrl}}/api/jwt/validate
Validates the provided JWT (encoded JWT string) to ensure the token is valid. A valid access token is properly signed and not expired.
This API may be used to verify the JWT as well as decode the encoded JWT into human readable identity claims.
HEADERS
Key | Datatype | Required | Description |
---|---|---|---|
Accept | string |
RESPONSES
status: OK
{"jwt":{"aud":{},"exp":"\u003clong\u003e","iat":"\u003clong\u003e","iss":"\u003cstring\u003e","nbf":"\u003clong\u003e","otherClaims":{"ametddd":{},"eu0d":{}},"sub":"\u003cstring\u003e","jti":"\u003cstring\u003e"}}