| 123456789101112131415 |
- mutation($username: String!, $password: String!, $strategy: String!) {
- authentication {
- login(username: $username, password: $password, strategy: $strategy) {
- responseResult {
- succeeded
- errorCode
- slug
- message
- }
- jwt
- tfaRequired
- tfaLoginToken
- }
- }
- }
|