token_type: "access" — revokes the access token. The user must refresh (if they have a valid refresh token) or re-login.token_type: "refresh" — revokes the refresh token. The user must re-login to obtain a new token pair.curl --location --request POST 'https://platform-oauth.convirza.com/oauth/revoke-token' \
--header 'Content-Type: application/json' \
--data-raw '{
"token": "abc123access456789012345678901234",
"token_type": "access"
}'{
"message": "Token revoked successfully"
}