...
Importantly! If we have MFA disabled, we disable a certain part of the endpoints that depend on this setting.
This is to obtain tokens for the login operation and restore security.
In this case, we will have a one-step login. Also, the user will not be able to restore security for the phone, e-mail, and Google Authenticator.
Endpoints:
- PUT /api/v1/account/password → Change user password
- PUT /api/v1/account/mobile → Endpoint for changing phone number
- POST /api/v1/account/mobile Endpoint for binding phone number to account
- PUT /api/v1/account/email → Endpoint for changing email
- POST /api/v1/account/emailEndpoint → for binding email to account
- PUT /api/v1/account/antiPhishingCode → Change anti-phishing code
- POST /api/v1/account/antiPhishingCode → Add anti-phishing code
- POST /api/v1/account/mobile/removing → Endpoint to remove phone number from account
- POST /api/v1/account/googleAuthenticator → Endpoint for binding Google Authenticator to account
- POST /api/v1/account/googleAuthenticator/removing → Endpoint to remove Google Authenticator from account
- POST /api/v1/account/email/removing → Endpoint to remove email from account
- POST /api/v1/account/password/recovery/verification → Password recovery verification
- POST /api/v1/login/verification → Endpoint to complete login
- POST /api/v1/account/security/recovery/verification → Verify that security recovery operation can be performed
- defaultLanguageISOCode defaultLanguageISOCode
Displaying information in a specific language
...