...
When creating the user, your mandator secret is required.
Listing your users
You may list your users using the GET /v1/users
endpoint in combination with your mandator credentials.
When is a user password assigned
...
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
...
Resetting via mandator credentials
...
In order to reset a users password, via mandator credentials, you must provide the clientId and clientSecret in the request header using the following header parameters:
...