action velopayments_unregister_mfafor_self { label: "Unregister MFA for Self" description: "
Unregister the MFA device for the user
\nIf 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/self/mfa/unregister" encoding: json input: { type: "object" properties: { Authorization: { type: "string" } mfaType: { type: "string" description: "The type of the MFA device" enum: ["SMS", "YUBIKEY", "TOTP"] } } required: ["mfaType"] additionalProperties: false } output: { type: "object" additionalProperties: true } }