User¶
A User is an individual within the organization. They can be assigned any Role but most will be designated as an Agent or as the Manager of a Team and/or Unit. A User can be n Manager, Agent or unassigned. The unassigned users are not visible in hierarchical tree, see more in [Tenant Tree](/v1/tree).
Note
The number of Users that can be added to a Tenant is not limited but the number that can be activated is restricted to the number of licenses that have been purchased. For more information see [Licensing](/v1/licensing).
User Domain Model¶
Represent the User domain model with available properties and its behaviors.
Note
Note that domain model is used for write methods POST (Create) and PUT (Update) and as result of read-only method GET/:id (GetById).
| Name | Description | Type | Required | Read-only | Default |
|---|---|---|---|---|---|
id |
Representing User identifier. | guid |
yes | yes | |
| Personal Details | |||||
username |
The username of User. | string(102) |
yes | no | |
firstName |
The User first name. | string(50) |
no | no | |
lastName |
The User last name. | string(50) |
no | no | |
email |
The User email. | string(100) |
no | no | |
phone |
The User phone number. | string(30) |
no | no | |
address |
The User residing address. | string(255) |
no | no | |
country |
The User residing country. | string(50) |
no | no | |
dateOfBirth |
The User date of birth. | datetime |
no | no | null |
isActive |
Denotes whether the User state is active or inactive. | boolean |
yes | no | active (true) |
isDeleted |
Denotes whether the User state is deleted or not. | boolean |
yes | [partially] | not deleted (false) |
| Employee Details | |||||
employeeReference |
E.g. Payroll number or another unique identifier. | string(50) | no | no |
|||
startDate |
The User employment start date. | datetime | no | no |
null |
||
endDate |
The User employment end date. | datetime | no | no |
null |
||
| Recorder | |||||
recorderPlayerId |
The [Recorder](/v1/unit) where the User’s media files are recorded and stored. | guid |
no | no | null |
recorderUserId |
The User identification of media files within the [Recorder](/v1/recorder). | string(500) |
no | no | |
recorderAccountId |
string(500) |
no | no | ||
| User Managerships, | Memberships and Roleships | ||||
managedUnits |
The User’s managed [Units](/v1/unit). | array(guid) |
no | no | |
managedTeams |
The User’s managed [Teams](/v1/team). | array(guid) |
no | no | |
teamMemberships |
The User’s Team memberships. | array(guid) |
no | no | |
roles |
The User’s assigned Roles | array(guid) |
no | no | |
| Lookups | |||||
unitsLookup |
The dictionary of active and not deleted [Units](/v1/unit),
needed for setting the managedUnits. |
dictionary(guid, string) |
N/A | N/A | N/A |
teamsLookup |
The dictionary of active and not deleted [Teams](/v1/team), needed for
setting the User’s managedTeams and teamMembership. |
dictionary(guid, string) |
N/A | N/A | N/A |
rolesLookup |
The dictionary of only adminstrative roles, needed
for setting the User’s roles. Read more in Roles . |
dictionary(guid, string) |
N/A | N/A | N/A |
recorderMediaPlayersLookup |
The dictionary of active [Recorders](/v1/recorder),
needed for setting the User’s recorerPlayerId. |
dictionary(guid, string) |
N/A | N/A | N/A |
Note
The User properties names (Name column) is for default usage by JSON, for C# Wrapper usage the User properties are capitalized (eg. Id, Name,..)!
Warning
isDeleted as true and also by default it is flagged isActive as false. Note that status isActive will remain “locked” until the User’s isDeleted state is updated to false or not deleted anymore. Then isActive is “unlocked” and can be changed. If the User is deleted and on update is tried to change isActive property, server will silently ignore sent isActive property.User List Model¶
Represent the User list model with available properties.
Note
| Name | Description | Type |
|---|---|---|
id |
Representing User identifier. | guid |
username |
The username of User. | string |
firstName |
The User first name. | string |
lastName |
The User last name. | string |
isActive |
Denotes whether the User state is active or inactive. | boolean |
isDeleted |
Denotes whether the User state is deleted or not. | boolean |
recorderUserId |
The User identification of media files within the Recorder. | string |
recorderAccountId |
string(50) |
|
managedUnits |
The User’s managed Units comma separated. | string |
managedTeams |
The User’s managed Teams comma separated. | string |
teamMemberships |
The User’s Team memberships comma separated. | string |
assignedRoles |
The User’s assigned Roles comma separated. | string |
Note
The User properties names (Name column) is for default usage by JSON, for C# Wrapper usage the User properties are capitalized (eg. Id, Name,..)!
List of Users¶
The list of Users for current Tenant.
Default REST approach¶
GET /api/v1/:tenantCode/users
Parameters¶
tenantCodeCurrent Tenant code, a validintegergreater or equal to 1000.
Danger
Remember to add API Key as customer*key and API Secret as customer*secret into your Request HTTP Header. See more in Getting Started.
Return value¶
- If there is no error:
JSONarray of [User List Model](/v1/user#user-list-model). - If there is an error:
JSONClient Errors object.
C# Wrapper approach¶
1 | UserWrapper(int tenantCode, string apiKey, string apiSecret).GetAll();
|
Parameters¶
Return value¶
- If there is no error:
ResaultContent<ICollection<User>>.Resultobject as collection of the [User List Model](/v1/user#user-list-model). - If there is an error:
ResaultContent<ICollection<User>>.Errorobject. See more in Client Errors.
Example usage¶
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 | int tenantCode = 1000;
string key = "ddZXdAZvWefFqxAEH62u";
string secret = "wx6GiQggg9YRH89XT5aKoY2qZLVquYjxARtgZhuGoFQX5w6Lws";
ITreeApiWrapper<User, UserList> userWrapper = new UserWrapper(tenantCode, key, secret);
ResponseContent<ICollection<UserList>> response = userWrapper.GetAll();
if (response.Result != null)
{
// Use Result as List of Users for displaying.
ICollection<UserList> users = response.Result;
}
else
{
// TODO: The error handling...
Console.WriteLine(response.Error);
}
|
Get User by Id¶
The User by requested Id for current Tenant.
Default REST approach¶
GET /api/v1/:tenantCode/users/:id
Parameters¶
tenantCodeCurrent Tenant code, a validintegergreater or equal to 1000.idThe User id, a valid and non-emptyguid.
Danger
Remember to add API Key as customer*key and API Secret as customer*secret into your Request HTTP Header. See more in Getting Started.
Return value¶
- If there is no error:
JSONas the [User Domain Model](/v1/user#user-model) object. - If there is an error:
JSONas the Client Errors object.
C# Wrapper approach¶
1 | UserWrapper(int tenantCode, string apiKey, string apiSecret).GetById(Guid id);
|
Parameters¶
Return value¶
- If there is no error:
ResaultContent<User>.Resultobject as the [User Domain Model](/v1/user#user-model). - If there is an error:
ResaultContent<User>.Errorobject. See more in Client Errors.
Example usage¶
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 | int tenantCode = 1000;
string key = "ddZXdAZvWefFqxAEH62u";
string secret = "wx6GiQggg9YRH89XT5aKoY2qZLVquYjxARtgZhuGoFQX5w6Lws";
Guid userId = new Guid("f4fe3ea7-ed2a-41dd-acd2-91c45c8b4891");
ITreeApiWrapper<User, UserList> userWrapper = new UserWrapper(tenantCode, key, secret);
ResponseContent<User> response = userWrapper.GetById(userId);
if (response.Result != null)
{
// Use Result as requested User for displaying.
User user = response.Result;
}
else
{
// TODO: The error handling...
Console.WriteLine(response.Error);
}
|
Create User¶
The creation of new User for current Tenant.
Default REST approach¶
POST /api/v1/:tenantCode/users
Parameters¶
tenantCodeCurrent Tenant code, a validintegergreater or equal to 1000.userJSONrepresentation of [User Domain Model](/v1/user#user-model) sent via Request HTTP Header.
Danger
Remember to add API Key as customer*key and API Secret as customer*secret into your Request HTTP Header. See more in Getting Started.
Return value¶
- If there is no error:
JSONrepresentation of newly created User as the [User Domain Model](/v1/user#user-model). - If there is an error:
JSONClient Errors object.
C# Wrapper approach¶
1 | UserWrapper(int tenantCode, string apiKey, string apiSecret).Create(User user);
|
Parameters¶
Return value¶
- If there is no error:
ResaultContent<User>.Resultobject as the [User Domain Model](/v1/user#user-model). - If there is an error:
ResaultContent<User>.Errorobject. See more in Client Errors.
Example usage¶
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 | int tenantCode = 1000;
string key = "ddZXdAZvWefFqxAEH62u";
string secret = "wx6GiQggg9YRH89XT5aKoY2qZLVquYjxARtgZhuGoFQX5w6Lws";
ITreeApiWrapper<User, UserList> userWrapper = new UserWrapper(tenantCode, key, secret);
// Get default data and lookup for users
User newUser = userWrapper.GetById(new Guid()).Result;
newUser.Username = "Tester";
newUser.RecorderMediaPlayerId = newUser.RecorderMediaPlayersLookup.FirstOrDefault().Key;
newUser.Roles = new List<Guid> { newUser.RolesLookup.FirstOrDefault().Key };
newUser.ManagedUnits = new List<Guid> { newUser.UnitsLookup.FirstOrDefault().Key };
newUser.ManagedTeams = new List<Guid> { newUser.TeamsLookup.FirstOrDefault().Key };
newUser.TeamMemberships = new List<Guid> { newUser.TeamsLookup.LastOrDefault().Key };
ResponseContent<User> response = userWrapper.Create(newUser);
if (response.Result != null)
{
// Use Result as newly created User for display.
User user = response.Result;
}
else
{
// TODO: The error handling...
Console.WriteLine(response.Error);
}
|
Update User¶
Updates already existent User for current Tenant.
Default REST approach¶
PUT /api/v1/:tenantCode/users/:id
Parameters¶
tenantCodeCurrent Tenant code, a validintegergreater or equal to 1000.idThe User id, a valid and non-emptyguid.userJSONrepresentation of [User Domain Model](/v1/user#user-model) sent via Request HTTP Header.
Danger
PUT verb method read more in Getting Started.Return value¶
- If there is no error:
JSONrepresentation of uodated User as the [User Domain Model](/v1/user#user-model). - If there is an error:
JSONClient Errors object.
C# Wrapper approach¶
1 | UserWrapper(int tenantCode, string apiKey, string apiSecret).Update(User user, bool updateViaPost = false);
|
Parameters¶
tenantCodeCurrent Tenant code, a validintegergreater or equal to 1000.apiKeyCurrent Tenant API Key provided by Qualtrak.apiSecretCurrent Tenant API Secret provided by Qualtrak.userThe User model constructed from User properties andIdmust be provided in it. If notArgumentExceptionwill be thrown!updateViaPostSet totrueif in your Web Server you don’t want to enablePUTmethod. Default isfalseor usePUTmethod!
Return value¶
- If there is no error:
ResaultContent<User>.Resultobject as the [User Domain Model](/v1/user#user-model). - If there is an error:
ResaultContent<User>.Errorobject. See more in Client Errors.
Example usage¶
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 | int tenantCode = 1000;
string key = "ddZXdAZvWefFqxAEH62u";
string secret = "wx6GiQggg9YRH89XT5aKoY2qZLVquYjxARtgZhuGoFQX5w6Lws";
Guid userId = new Guid("f4fe3ea7-ed2a-41dd-acd2-91c45c8b4891");
ITreeApiWrapper<User, UserList> userWrapper = new UserWrapper(tenantCode, key, secret);
User user = userWrapper.GetById(userId).Result;
user.Username = "Tester";
user.RecorderMediaPlayerId = user.RecorderMediaPlayersLookup.FirstOrDefault().Key;
user.Roles = new List<Guid> { user.RolesLookup.FirstOrDefault().Key };
user.ManagedUnits = new List<Guid> { user.UnitsLookup.FirstOrDefault().Key };
user.ManagedTeams = new List<Guid> { user.TeamsLookup.FirstOrDefault().Key };
user.TeamMemberships = new List<Guid> { user.TeamsLookup.LastOrDefault().Key };
// Update via PUT method (default).
ResponseContent<User> response = userWrapper.Update(user);
// Update via POST method (use true argument).
// ResponseContent<User> response = userWrapper.Update(user, true);
if (response.Result != null)
{
// Use Result of updated User for display.
User updatedUser = response.Result;
}
else
{
// TODO: The error handling...
Console.WriteLine(response.Error);
}
|
Delete User¶
Deletes existent User for current Tenant.
Warning
isDeleted. When User is deleted it can be undeleted by setting isDeleted to false while updating Unit.Default REST approach¶
DELETE /api/v1/:tenantCode/users/:id
Parameters¶
tenantCodeCurrent Tenant code, a validintegergreater or equal to 1000.idThe User id, a valid and non-emptyguid.
Danger
DELETE verb method read more in Getting Started.Return value¶
- There is no return value except if there is an error, the
JSONClient Errors object.
C# Wrapper approach¶
1 | UserWrapper(int tenantCode, string apiKey, string apiSecret).Delete(Guid id, bool updateViaPost = false);
|
Parameters¶
tenantCodeCurrent Tenant code, a validintegergreater or equal to 1000.apiKeyCurrent Tenant API Key provided by Qualtrak.apiSecretCurrent Tenant API Secret provided by Qualtrak.idThe User id, a valid and non-emptyguid.updateViaPostSet totrueif in your Web Server you don’t want to enableDELETEmethod. Default isfalseor useDELETEmethod!
Return value¶
- If there is no error: no return value or
void. - If there is an error:
ResaultContent<User>.Errorobject. See more in Client Errors.
Example usage¶
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 | int tenantCode = 1000;
string key = "ddZXdAZvWefFqxAEH62u";
string secret = "wx6GiQggg9YRH89XT5aKoY2qZLVquYjxARtgZhuGoFQX5w6Lws";
Guid userId = new Guid("f4fe3ea7-ed2a-41dd-acd2-91c45c8b4891");
ITreeApiWrapper<User, UserList> userWrapper = new UserWrapper(tenantCode, key, secret);
// Delete via DELETE method (default).
ResponseContent response = userWrapper.Delete(userId);
// DELETE via POST method (use true argument)..
// ResponseContent response = userWrapper.Delete(userId, true);
if (response.Error != null)
{
// TODO: The error handling...
Console.WriteLine(response.Error);
}
|