Full stack of operations with users and users' profiles.
Please make sure you have InstanceID and InstanceKey ready. If not, please refer to the part of account registration
Telematics parameters
User service enables managing user's telematics parameters. It can be set up during registration or changed later via Update Usermethod. This parameters will be used by default if you do not set up them manually.
Parameter
Description
"EnableTracking"
Activate/Deactivate SDK tracking
EnableLogging
Activate/Deactivate debug mode (IMPORTANT: this option causes a greater battery consumption. Use it carefully only while debugging!)
EnableRealtimeLocation
Activate/Deactivate online location monitoring
Enabled
Activate/Deactivate user (Note: deactivated user is not a deleted user. If you need to permanently delete user, use Delete User method)
Register a new user
POST http://user.telematicssdk.com/v1/Registration/Create
Register a new user. The method returns DeviceToken that will be placed to telematics SDK and will play a role of an identifier to link telematics data with app user.
Authorization: Allow anonymous
For the purpose of smooth transition, we recommend you to store JWT token and refresh token together with Device ID. Once we will be ready to move to JWT Token we will inform our clients respectively. Device Token will be supported over 12 month since announcement.
JWT token has a lifetime. After this period - it expires. When your JWT token is expired you should refresh your token.
We will support the old platform till November 01, 2021 and keep inform all our clients about progress and required steps.
Important: JWT Token will be used in other API Requests.
Optionally you can add user information to User Service as well as manage SDK tracking and data collection
Adding user information unlocks better experience working with DataHub. The more information you share, the more completed profile you will get in DataHub, as well as more data for portfolio categorisation.
{
"CreateAccessToken": true, // default = true, - return jwt token in response for immediately using or use login to receive jwt
"FirstName": "string",
"LastName": "string",
"Nickname": "string",
"Phone": "string",
"Email": "string",
"Gender": "None", // { "None", "Male", "Female", "Other" }
"Birthday": "2019-12-13T06:19:18.837Z",
"MaritalStatus": "string",
"ChildrenCount": 0,
"Country": "string",
"District": "string",
"City": "string",
"Status": "Active", //default = active, - you can also create the "deactivated" user
"Address": "string",
"ImageUrl": "string" // photo url (you can upload your photo later),
"InstanceInviteCode": "string", // Registration in instance by invite code
"UserFields": { // default = null. Will be using dafult values below
"EnableTracking": true, // default = true - enable tracking user motion
"EnableLogging": false; // default = false - enable logging on mobile device
"Enabled": true, // default = true - enable telematics SDK
"ClientId": "string", // default = null. User ID in your system
}
}
Register multiple users
POST/v1/Registration/CreateMany
Create a bulk of users
Authorization: Allow anonymous