action velopayments_unregister_mfa { label: "Unregister MFA for the user" description: "

Unregister the MFA device for the user

\n

If the user does not require further verification then a register new MFA device token will be sent to them via their email address

\n" provider: velopayments method: POST path: "/v2/users/{userId}/mfa/unregister" encoding: json input: { type: "object" properties: { mfaType: { type: "string" description: "The type of the MFA device" enum: ["YUBIKEY", "TOTP"] } userId: { type: "string" format: "uuid" } verificationCode: { type: "string" description: "

Optional property that MUST be suppied when manually verifying a user

\n

The user's smsNumber is registered via a separate endpoint and an OTP sent to them

\n" } } required: ["mfaType", "userId"] additionalProperties: false } output: { type: "object" additionalProperties: true } }