Update a MFA verification name

PATCH /api/my-account/mfa-verifications/{verificationId}/name

Update a MFA verification name, a logto-verification-id in header is required for checking sensitive permissions. Only WebAuthn is supported for now.

Path parameters

application/json

Body Required

  • name string Required

    The name of the MFA verification.

Responses

  • 200 application/json

    The MFA verification name was updated successfully.

  • Bad Request

  • Unauthorized

  • Forbidden

PATCH /api/my-account/mfa-verifications/{verificationId}/name
curl \
 --request PATCH 'https://[tenant_id].logto.app/api/my-account/mfa-verifications/{verificationId}/name' \
 --header "Authorization: Bearer $ACCESS_TOKEN" \
 --header "Content-Type: application/json" \
 --data '{"name":"string"}'
Request examples
{
  "name": "string"
}