As a Partner, you can create user accounts for your staff or systems.
You can choose the roles which will be granted to these user accounts, allowing you to limit the permissions of a user.
This might be useful to create user accounts for Technical Support teams, allowing them to only read data, for example.
Steps to Create and Manage User Accounts:
Create User Account:
- Use the
POST /api/partner/accountsendpoint to create a new user account. - Provide an email and the list of roles/permissions granted to this new user.
- In response, you will receive an
OTP(One-Time Password).
- Use the
Login with OTP:
- Use the
POST /api/partner/loginendpoint to log in with the OTP. - Set the
usernameto the email of the created user. - In response, you will receive a
passwordChangeSecret.
- Use the
Change User Password:
- Use the
POST /api/partner/passwords/changeendpoint with thepasswordChangeSecretto set the user's password. - Once the password is set, the user can log into the API and perform the actions they are allowed to.
- Use the