The request you use doesn't look like anything in the specs. [Here is an example](https://tools.ietf.org/html/rfc6749#section-4.3.2) of correct request to token endpoint. Another example:
```
POST /oxauth/restv1/token HTTP/1.1
Host: idp.host.loc
Content-Type: application/x-www-form-urlencoded
Authorization: Basic QCFBMjc4LjZFNDkuQjA5Qi41MEZEITAwMDEhNDgzMi5CNDhDITAwMDghQUFDMy5CRDdGLkFGMTQuRDVDMjoxcTJ3M2U0cg==
Cache-Control: no-cache
Content-Length: 104
grant_type=password&username=admin&password=1q2w3e4r&scope=openid+profile+email+uma_protection+user_name
```
Please note that we usually doesn't help with usage of low-level tools like Postman, or development of your custom OIDC clients. Those are complex topics and it's expected you've learned the specs to the moment you start playing with it.
Also, usage of this grant is not recommended, it's not a standard OIDC flow.