Manage users
Use this section to add/update/view new users in evalink talos.
There are two types of users in evalink talos:
- Administrator
- Operator
evalink talos offers the ability to invite new users in your company and select their type (Administrator/Operator). They can then accept the invitation and create an account with their e-mail and password.
Managing users is currently restricted for generated API tokens
post
https://talos-app.io
/api/oauth-service/invitations
invite users
Example:
{
"companyAdmin": true,
"companyId": "<companyId>",
"email": "<emailAddress>"
}
get
https://talos-app.io
/api/oauth-service/users/search/findByCompanyId:companyId
find users by company ID
get
https://talps-app.io
/api/oauth-service/users/search/findByIdIn
find a list of users by user IDs
get
https://talos-app.io
/api/oauth-service/users/{id}
find a user by user ID
{
"email": "string",
"firstName": "string",
"id": "string",
"lastName": "string",
"links": {
"empty": true
},
"mfaEnabled": true
}
get
https://talos-app.io
/api/oauth-service/users/{id}/roles
find the roles of a particular user
post
https://talos-app.io
/api/oauth-service/users/{id}/roles
update the roles of a particular user
Last modified 2yr ago