Strapi + MongoDB not saving password field

System Information
  • Strapi Version:
  • Operating System:
  • Database: MongoDB
  • Node Version:
  • NPM Version:
  • Yarn Version:

I am trying to save a password in password type field in Strapi with MongoDB, but is always empty. I am testing through API calls using Insomnia software. The endpoints are already enable in Strapi configuration and the data is stored, just password is missing. For example, doing a POST API call with this data:

{
    "name": "Test",
    "Password": "testpassword",
    "email": "testmail@hotmail.com"
}  

It is stored this way:

{
  "_id": "6097eadeb01bb600159d9319",
  "name": "Test",
  "email": "testmail@hotmail.com",
  "published_at": "2021-05-09T13:59:58.204Z",
  "createdAt": "2021-05-09T13:59:58.211Z",
  "updatedAt": "2021-05-09T13:59:58.211Z",
  "__v": 0,
  "id": "6097eadeb01bb600159d9319"
}

If I enter to Strapi and check the created user, the password field is missing too, and even if I enter it manually, it is not saved either.

Please note that fields are case-sensitive. So “Password” in that case is incorrect. The correct field: “password”.