Magento You are required to configure personal Two-Factor Authorization in order to login. Please check your email

Magento 2.4.3+ with try to fetch Admin Token API in postman to use access token as Header params in other REST API and you are facing an error that looks like the below,

{
    "message": "You are required to configure personal Two-Factor Authorization in order to login. Please check your email." 
}

This error means you need to configure Two Factor Authenticator to fetch the access tokens.

While you hit the Request for the V1/integration/admin/token at a time, one mail is sent to the current user for which you have provided a username/password in the body.

When you check the mail, Your content will be as per the screenshot,

Two Factor Authenticator Magento
Two-Factor Authenticator Magento

You need to click on the Click here link from the received email.

  • By Clicking a Link, a New page is open with QR Code, You need to use Google Authenticator Apps to scan the code.
  • Once you scan from the mobile apps, it will be saved to your app’s history.
  • In the future, You can just use a six-digit code to access the admin panel or fetch an admin token in REST API.

Once you sync your 2FA account with apps, you have to use 2fa Provider REST API to get an access token.

You can follow the link, Magento Please use the 2fa provider-specific endpoints to obtain a token error REST API on the Admin token.

By using the above way, you will have the required Admin Panel Token to use other APIs that required admin permissions.