Migrate Existing Users
Overview of steps related to migrating existing users to our charge point management system.
The custom backend initiates communication with the Public API by sending a GET request to the /resources/users/v1.0 endpoint. Note that we have a setting allowing the retrieval of users' hashed passwords, which must be used solely for migration purposes.
In response to the request, the Public API returns a list of users, each with relevant details - email, hashed password, first name, last name. ([{"email":"...","password":"HASHED_PASSWORD","first_name":"...","last_name":"...",...}]
).
Once the custom backend receives this data, it securely saves these user details, completing the migration process.
Updated 12 months ago