PUT Multi-Factor Authentication
https://auth.riotgames.com/api/v1/authorization
Submits a multi-factor authentication code for login
Headers:
-
Content-Type: application/json
Body:
type Multi-FactorAuthenticationBody = {
type: "multifactor";
multifactor: {
/** The multi-factor authentication code */
otp: string;
rememberDevice: boolean;
};
};