Revoke Authentication
Revoke an existing pair of tokens validation. After calling this method user will not be able to use accessToken
to get access and neither refreshToken
to get a new pair of tokens.
Request
- authorizationId:
String
(required)- The authorization ID from the list of valid sessions obtained from endpoint
approvedAuthentications
- The authorization ID from the list of valid sessions obtained from endpoint
Invocation
mutation RevokeAuthentication {
revokeAuthentication(request: {
authorizationId: "xxxxx"
})
}
Response
{
"data": null
}
Updated about 1 month ago