action dracoon_get_totp_setup_information { label: "Request information to setup TOTP as second authentication factor" description: "

🚀 Since v4.37.0

\n\n### Description: \nGet setup information for multi-factor authentication (TOTP).\n\n### Precondition:\nAuthenticated user.\n\n### Postcondition:\nNone. \n\n### Further Information:\nNone." provider: dracoon method: GET path: "/v4/user/account/mfa/totp" encoding: json input: { type: "object" properties: { "X-Sds-Auth-Token": { type: "string" } } additionalProperties: false } output: { type: "object" description: "Contains QR code URL and OTP URI for TOTP setup" required: ["id", "otpUri", "qrCode", "secret"] properties: { id: { type: "integer" format: "int64" description: "ID" } otpUri: { type: "string" description: "URI containing secret key, issuer and account information" } qrCode: { type: "string" description: "TOTP data URL (QR Code)" } secret: { type: "string" description: "Secret key used for setup of TOTP authentication" } } } }