User Login is not working for Custom Auth0 account

Issue Description: What’s happening?

I’m not able to execute the userLogin mutation with my credentials

Reproduce the Issue: What steps can someone take to replicate the problem?

  1. My login is Email - Password, the user was created with the userSignUpWithToken mutation
  2. I’m trying the mutation on the API EXPLORER
  3. I’m testing with the authProfile used to create the user.

Expected Behavior: What did you expect to happen?

successfully log in with the mutation

Actual Behavior: What actually happened?

{
  "data": {
    "userLogin": null
  },
  "errors": [
    {
      "message": "The request is invalid.",
      "locations": [
        {
          "line": 2,
          "column": 3
        }
      ],
      "path": [
        "userLogin"
      ],
      "code": "ValidationError",
      "details": {
        "password": "Incorrect email or password"
      }
    }
  ]
}

#### More details or screenshot

```![31%20AM|690x431](upload://xNhn0VaybXYSuTmlAfOIu06DSyK.png) ![31%20AM%20(2)|690x388](upload://4ti3rLCwjoiducqfpR0U482Qtyo.png)

Thanks to @eugene.antonevich it is required in the Tenant Application to activate the PASSWORD in the Grant Type of the Advanced Settings

Application -> Advanced Settings -> Grant Types -> Password

1 Like