action dracoon_delete_mfa_totp_setup { label: "Disable a MFA TOTP setup with generated OTP" description: "

🚀 Since v4.37.0

\n\n### Description: \nDelete multi-factor authentication TOTP setup with a valid OTP code.\n\n### Precondition:\nAuthenticated user \nMulti-factor authentication is **NOT** enforced\n\n### Postcondition:\nSecond factor TOTP is disabled.\n\n### Further Information:\nNone." provider: dracoon method: DELETE path: "/v4/user/account/mfa/totp/{id}" encoding: json input: { type: "object" properties: { "X-Sds-Auth-Token": { type: "string" } id: { type: "integer" format: "int64" } valid_otp: { type: "string" } } required: ["id", "valid_otp"] additionalProperties: false } output: { type: "object" additionalProperties: true } }