Thanks for the clarification.
To rephrase my question, how would I configure gluu so that, when requesting an auth token via the "/oxauth/restv1/token" endpoint, I can provide custom credentials instead of "username" and "password"?
```
Current request to "/oxauth/restv1/token":
I am providing:
- "grant_type"
- "Authorization" (Base64 encoded client_id, client_secret)
- "username"
- "password"
- "scope"
Future request to "/oxauth/restv1/token" (is this possible?):
I would like to provide:
- "grant_type"
- "Authorization" (Base64 encoded client_id, client_secret)
- custom LDAP variable "username2"
- custom LDAP variable "password2"
- "scope"
```