Get MFA verifications

GET /api/my-account/mfa-verifications

Get MFA verifications for the user.

Responses

GET /api/my-account/mfa-verifications
curl \
 --request GET 'https://[tenant_id].logto.app/api/my-account/mfa-verifications' \
 --header "Authorization: Bearer $ACCESS_TOKEN"
Response examples (200)
[
  {
    "id": "string",
    "createdAt": "string",
    "type": "Totp",
    "agent": "string",
    "name": "string",
    "remainCodes": 42.0
  }
]