Is this an error in the documentation? Why can I p...
# ory-network
m
Is this an error in the documentation? Why can I provide a password under the oidc config? According to the documentation this would be a valid body for the
POST /admin/identities
endpoint:
Copy code
{
  credentials: {
    oidc: {
      config: {
        config: {
          hashed_password: '__password_hash__',
        }
      }
    }
  }
}
I’d expected to do the following to create a user with a password though:
Copy code
{
  credentials: {
    password: {
      config: {
        hashed_password: '__password_hash__',
      }
    }
  }
}