PasswordTokenRequest
Password
Token Request is used when the application exchanges the user’s username and password for an access token. This grant type is suitable for first-party clients, such as those built into the device operating system or a highly-trusted application.
The username that is assigned to the user's account.
john.done@example.com
The password that is associated with the user's account.
password
The scope of the requested access token. Can be used to restrict the new access token to a subset of the scope allowed to the client and token type.
whitelabelWallet
Unique identifier assigned to individual users or devices, used to create their digital identity.
bb229878-c877-4cc3-91c4-2030c34be28a
Parameter, which indicates what will be the preferred login method. The credential value must be provided in the 'password' property.
- password - The user will be asked to enter password.
- pin - The user will be asked to enter PIN.
Possible values: [password
, pin
]
password
{
"username": "john.done@example.com",
"password": "password",
"scope": "whitelabelWallet",
"digital_fingerprint": "bb229878-c877-4cc3-91c4-2030c34be28a",
"login_strategy": "password"
}