mirror of
https://github.com/zammad/zammad
synced 2026-05-24 09:48:36 +00:00
Co-authored-by: Florian Liebe <fl@zammad.com> Co-authored-by: Vladimir Sheremet <vs@zammad.com> Co-authored-by: Dusan Vuckovic <dv@zammad.com>
16 lines
333 B
GraphQL
16 lines
333 B
GraphQL
mutation twoFactorMethodInitiateAuthentication(
|
|
$login: String!
|
|
$password: String!
|
|
$twoFactorMethod: EnumTwoFactorAuthenticationMethod!
|
|
) {
|
|
twoFactorMethodInitiateAuthentication(
|
|
login: $login
|
|
password: $password
|
|
twoFactorMethod: $twoFactorMethod
|
|
) {
|
|
initiationData
|
|
errors {
|
|
...errors
|
|
}
|
|
}
|
|
}
|