Delete an MFA verification for a user

DELETE /api/users/{userId}/mfa-verifications/{verificationId}

Delete an MFA verification for the user with the given verification ID. The verification ID must be associated with the given user ID.

Path parameters

  • userId string Required

    The unique identifier of the user.

  • verificationId string Required

    The unique identifier of the verification.

Responses

  • 204

    The MFA verification was deleted successfully.

  • 400

    Bad Request

  • 401

    Unauthorized

  • 403

    Forbidden

  • 404

    Not Found

DELETE /api/users/{userId}/mfa-verifications/{verificationId}
curl \
 -X DELETE https://[tenant_id].logto.app/api/users/{userId}/mfa-verifications/{verificationId}