zammad/app/frontend/shared/graphql/mutations/twoFactorMethodInitiateAuthentication.graphql
Florian Liebe e3d3463ead Fixes #4616 - Two-factor authentication (2FA): Security Keys
Co-authored-by: Florian Liebe <fl@zammad.com>
Co-authored-by: Vladimir Sheremet <vs@zammad.com>
Co-authored-by: Dusan Vuckovic <dv@zammad.com>
2023-06-01 09:26:46 +02:00

16 lines
333 B
GraphQL

mutation twoFactorMethodInitiateAuthentication(
$login: String!
$password: String!
$twoFactorMethod: EnumTwoFactorAuthenticationMethod!
) {
twoFactorMethodInitiateAuthentication(
login: $login
password: $password
twoFactorMethod: $twoFactorMethod
) {
initiationData
errors {
...errors
}
}
}