Get MFA verifications

GET /api/my-account/mfa-verifications

Get MFA verifications for the user.

Responses

  • 200 application/json

    The MFA verifications were retrieved successfully.

    Hide response attributes Show response attributes object
    • id string Required
    • createdAt string Required
    • type string Required

      Values are Totp, WebAuthn, or BackupCode.

    • agent string
    • name string
    • remainCodes number
  • 400

    Bad Request

  • 401

    Unauthorized

  • 403

    Forbidden

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
  }
]