Get logto config

GET /api/my-account/logto-configs

Retrieve the exposed portion of the current user's logto config. This endpoint currently includes only the MFA skip state.

Responses

  • 200 application/json

    The exposed logto config fields were retrieved successfully.

    Hide response attribute Show response attribute object
    • mfa object Required
      Hide mfa attribute Show mfa attribute object
      • skipped boolean Required
  • 400

    MFA is not available in the account center.

  • 401

    Permission denied due to insufficient scope.

  • 403

    Forbidden

GET /api/my-account/logto-configs
curl \
 --request GET 'https://[tenant_id].logto.app/api/my-account/logto-configs' \
 --header "Authorization: Bearer $ACCESS_TOKEN"
Response examples (200)
{
  "mfa": {
    "skipped": true
  }
}