VerifyTokenInput
Parameters for token verification and validation.
Contains the authentication token that needs to be verified for validity, expiration, and signature integrity.
input VerifyTokenInput {
token: String!
}
Fields
VerifyTokenInput.token
● String!
non-null scalar
JWT authentication token to verify.
The token will be validated for signature integrity, expiration time, and issuer authenticity. Must be a properly formatted JWT token.
Member Of
verifyToken
mutation