JWT

JWT token management and validation operations

Validate JWT token

post
/jwt/validate

Validate a JWT token and return user information

Authorizations
AuthorizationstringRequired
Bearer authentication header of the form Bearer <token>.
Responses
200

Token is valid

application/json
post
/jwt/validate

Verify reset password token

post
/jwt/verify-reset-password

Verify a reset password JWT token

Authorizations
AuthorizationstringRequired
Bearer authentication header of the form Bearer <token>.
Body
tokenstringRequired

Reset password JWT token

Responses
200

Token is valid

application/json
post
/jwt/verify-reset-password

Verify registration token

post
/jwt/verify-registration

Verify a registration JWT token and return member data

Authorizations
AuthorizationstringRequired
Bearer authentication header of the form Bearer <token>.
Body
tokenstringRequired

Registration JWT token

Responses
200

Token is valid

application/json
post
/jwt/verify-registration

Get current user from token

get
/jwt/current-user

Extract current user information from JWT token

Authorizations
AuthorizationstringRequired
Bearer authentication header of the form Bearer <token>.
Responses
200

Current user retrieved successfully

application/json
get
/jwt/current-user

Last updated