...
Note that both, login and token exchange will require your mandator credentials as a second authentication factor, as specified by the oauth standard - see our API documentation for details.
The login request including client credentials will then look as shown below. Please not the the client_id
should be a hash and not your mandators public ID (like “rentablo”).
Code Block |
---|
{
"grant_type": "password",
"client_id": "aabbccddeeffgghhiijjkkllmmoo",
"client_secret": "bbccddeeffgghhiijjkkllmmoopp",
"username": "the-username",
"password": "the-password"
} |
How to change a user’s password
...