3.13.0.RELEASE
[ Base URL: localhost:2002/users ]
IMPORTANT - The Try it Out button will generate curl requests for examples, but executing them through the UI will not work as authentication has not been set up. This page is for documentation only.
Everything concerning users
Fetch a list of all existing users, with pagination and filter options
No parameters
Code | Description |
200 | OK
|
401 | Authentication required |
403 | Authenticated users who are not admins can only access their own data |
Create a new user. If the user already exists, then an update of the user will be made. Be careful, login must be minimum 2 characters and must only contain lowercase letters, _, -, . or digits.
Name | Description |
---|---|
user object (body) | User to be created
|
Code | Description |
200 | OK (user already existed so it was updated)
|
201 | Created
|
400 | Bad request |
401 | Authentication required |
403 | Authenticated users who are not admins can only create their own data |
Fetch an existing user from their login
Name | Description |
---|---|
login * string (path) | user login |
Code | Description |
200 | OK
|
401 | Authentication required |
403 | Authenticated users who are not admins can only access their own data |
404 | Required user not found |
Update existing user
Name | Description |
---|---|
login * string (path) | user login (should match login in request body) |
user object (body) | User to be updated (login should match path parameter)
|
Code | Description |
200 | OK
|
201 | Created
|
400 | Bad request (body doesn't match login path parameter) |
401 | Authentication required |
403 | Authenticated users who are not admins can only update their own data |
Remove a user
Name | Description |
---|---|
login * string (path) | User login |
Code | Description |
200 | Deleted |
400 | Bad request |
401 | Authentication required |
403 | Forbidden - ADMIN role necessary |
404 | Required user not found |
Fetch existing user's settings from their login
Name | Description |
---|---|
login * string (path) | user login |
Code | Description |
200 | OK
|
401 | Authentication required |
403 | Authenticated users who are not admins can only access their own data |
404 | Required user not found |
Update existing user settiogs
Name | Description |
---|---|
login * string (path) | user login (should match login in request body) |
userSettings object (body) | User settings to be updated (login should match path parameter)
|
Code | Description |
200 | OK
|
201 | Created
|
400 | Bad request (body doesn't match login path parameter) |
401 | Authentication required |
403 | Authenticated users who are not admins can only update their own data |
404 | User not found |
Patch existing user settions
Name | Description |
---|---|
login * string (path) | user login |
userSettings object (body) | User settings to be updated
|
Code | Description |
200 | OK
|
401 | Authentication required |
403 | Authenticated users who are not admins can only update their own data |
404 | User not found |
synchronize user data with JWT token
No parameters
Code | Description |
200 | OK
|
201 | Created
|
401 | Authentication required |
Update list of group users, users not included in given list are removed from group
Name | Description |
---|---|
id * string (path) | Group id |
users array[string] (body) | Array of user ids representing exactly the intended list of group users after update
|
Code | Description |
200 | Updated |
400 | Bad request |
401 | Authentication required |
403 | Forbidden - ADMIN role necessary |
404 | Required group not found |
ONLY add users to group (no deletion)
Name | Description |
---|---|
id * string (path) | Group id |
users array[string] (body) | Array of user ids to be added to group
|
Code | Description |
200 | Updated |
400 | Bad request |
401 | Authentication required |
403 | Forbidden - ADMIN role necessary |
404 | Required group not found |
remove all users from group
Name | Description |
---|---|
id * string (path) | Group id |
Code | Description |
200 | Deleted |
400 | Bad request |
401 | Authentication required |
403 | Forbidden - ADMIN role necessary |
404 | Required group not found |
ONLY remove user from group (no addition)
Name | Description |
---|---|
id * string (path) | Group id |
login * string (path) | User login |
Code | Description |
200 | Deleted |
400 | Bad request |
401 | Authentication required |
403 | Forbidden - ADMIN role necessary |
404 | Required group not found |
Update list of entity users, users not included in given list are removed from entity.
Name | Description |
---|---|
id * string (path) | Entity id |
users array[string] (body) | Array of user logins representing exactly the intended list of entity users after update
|
Code | Description |
200 | Updated |
400 | Bad request |
401 | Authentication required |
403 | Forbidden - ADMIN role necessary |
404 | Required entity not found |
ONLY add users to entity (no deletion).
Name | Description |
---|---|
id * string (path) | Entity id |
users array[string] (body) | Array of user logins to be added to entity
|
Code | Description |
200 | Updated |
400 | Bad request |
401 | Authentication required |
403 | Forbidden - ADMIN role necessary |
404 | Required entity not found |
remove all users from entity.
Name | Description |
---|---|
id * string (path) | Entity id |
Code | Description |
200 | Deleted |
400 | Bad request |
401 | Authentication required |
403 | Forbidden - ADMIN role necessary |
404 | Required entity not found |
ONLY remove user from entity (no addition).
Name | Description |
---|---|
id * string (path) | Entity id |
login * string (path) | User login |
Code | Description |
200 | Deleted |
400 | Bad request |
401 | Authentication required |
403 | Forbidden - ADMIN role necessary |
404 | Required entity not found |
Fetch existing user's perimeters from their login.
Name | Description |
---|---|
login * string (path) | user login |
Code | Description |
200 | OK
|
401 | Authentication required |
403 | Authenticated users who are not admins can only access their own data |
404 | Required user not found |
Get information about the user connected and his perimeters.
No parameters
Code | Description |
200 | OK
|
401 | Authentication required |
Everything concerning groups
Fetch a list of all existing groups, with pagination and filter options
No parameters
Code | Description |
200 | OK
|
401 | Authentication required |
403 | Forbidden - ADMIN role necessary |
Create a new group of users
Name | Description |
---|---|
group object (body) | Group to be created
|
Code | Description |
200 | Updated
|
201 | Created
|
400 | Bad request (duplicate key) |
401 | Authentication required |
403 | Forbidden - ADMIN role necessary |
Update existing group
Name | Description |
---|---|
id * string (path) | Id of group to be updated (should match "id group" in request body) |
group object (body) | Updated group data (should match "id group" path parameter)
|
Code | Description |
200 | Updated
|
201 | Created
|
400 | Bad request (body doesn't match "id group" path parameter) |
401 | Authentication required |
403 | Forbidden - ADMIN role necessary |
Fetch an existing group of users
Name | Description |
---|---|
id * string (path) | Group id |
Code | Description |
200 | OK
|
401 | Authentication required |
403 | Forbidden - ADMIN role necessary |
404 | Required group not found |
Remove a group
Name | Description |
---|---|
id * string (path) | Group id |
Code | Description |
200 | Deleted |
400 | Bad request |
401 | Authentication required |
403 | Forbidden - ADMIN role necessary |
404 | Required group not found |
Update list of group users, users not included in given list are removed from group
Name | Description |
---|---|
id * string (path) | Group id |
users array[string] (body) | Array of user ids representing exactly the intended list of group users after update
|
Code | Description |
200 | Updated |
400 | Bad request |
401 | Authentication required |
403 | Forbidden - ADMIN role necessary |
404 | Required group not found |
ONLY add users to group (no deletion)
Name | Description |
---|---|
id * string (path) | Group id |
users array[string] (body) | Array of user ids to be added to group
|
Code | Description |
200 | Updated |
400 | Bad request |
401 | Authentication required |
403 | Forbidden - ADMIN role necessary |
404 | Required group not found |
remove all users from group
Name | Description |
---|---|
id * string (path) | Group id |
Code | Description |
200 | Deleted |
400 | Bad request |
401 | Authentication required |
403 | Forbidden - ADMIN role necessary |
404 | Required group not found |
ONLY remove user from group (no addition)
Name | Description |
---|---|
id * string (path) | Group id |
login * string (path) | User login |
Code | Description |
200 | Deleted |
400 | Bad request |
401 | Authentication required |
403 | Forbidden - ADMIN role necessary |
404 | Required group not found |
Update list of groups that have this perimeter, groups not included in given list lose this perimeter.
Name | Description |
---|---|
id * string (path) | Perimeter id |
groups array[string] (body) | Array of group id representing exactly the intended list of groups that must have this perimeter after update
|
Code | Description |
200 | Updated |
400 | Bad request |
401 | Authentication required |
403 | Forbidden - ADMIN role necessary |
404 | Required perimeter not found |
ONLY add groups to perimeter (no deletion).
Name | Description |
---|---|
id * string (path) | Perimeter id |
groups array[string] (body) | Array of group id to be added to perimeter
|
Code | Description |
200 | Updated |
400 | Bad request |
401 | Authentication required |
403 | Forbidden - ADMIN role necessary |
404 | Required perimeter not found |
remove all groups from perimeter.
Name | Description |
---|---|
id * string (path) | Perimeter id |
Code | Description |
200 | Deleted |
400 | Bad request |
401 | Authentication required |
403 | Forbidden - ADMIN role necessary |
404 | Required perimeter not found |
ONLY remove group from perimeter (no addition).
Name | Description |
---|---|
idPerimeter * string (path) | Perimeter id |
idGroup * string (path) | Group id |
Code | Description |
200 | Deleted |
400 | Bad request |
401 | Authentication required |
403 | Forbidden - ADMIN role necessary |
404 | Required perimeter not found |
Fetch existing group's perimeters from their id.
Name | Description |
---|---|
id * string (path) | group id |
Code | Description |
200 | OK
|
401 | Authentication required |
403 | Forbidden - ADMIN role necessary |
404 | Required group not found |
Update list of perimeters for group, perimeters not included in given list are no longer linked to the group.
Name | Description |
---|---|
id * string (path) | Group id |
perimeters array[string] (body) | Array of perimeter id representing exactly the intended list of perimeters that must be linked to the group after update
|
Code | Description |
200 | Updated |
400 | Bad request |
401 | Authentication required |
403 | Forbidden - ADMIN role necessary |
404 | Required group not found |
ONLY add perimeters to group (no deletion).
Name | Description |
---|---|
id * string (path) | Group id |
perimeters array[string] (body) | Array of perimeter id to be added to group
|
Code | Description |
200 | Updated |
400 | Bad request |
401 | Authentication required |
403 | Forbidden - ADMIN role necessary |
404 | Required group not found |
Everything concerning entities
Fetch a list of all existing entities, with pagination and filter options.
No parameters
Code | Description |
200 | OK
|
401 | Authentication required |
Create a new entity of users.
Name | Description |
---|---|
entity object (body) | Entity to be created
|
Code | Description |
200 | Updated
|
201 | Created
|
400 | Bad request (duplicate key) |
401 | Authentication required |
403 | Forbidden - ADMIN role necessary |
Update existing entity.
Name | Description |
---|---|
id * string (path) | Id of entity to be updated (should match id in request body) |
entity object (body) | Updated entity data (should match id path parameter)
|
Code | Description |
200 | Updated
|
201 | Created
|
400 | Bad request (body doesn't match id path parameter) |
401 | Authentication required |
403 | Forbidden - ADMIN role necessary |
Fetch an existing entity of users.
Name | Description |
---|---|
id * string (path) | Entity id |
Code | Description |
200 | OK
|
401 | Authentication required |
403 | Forbidden - ADMIN role necessary |
404 | Required entity not found |
Remove an entity
Name | Description |
---|---|
id * string (path) | Entity id |
Code | Description |
200 | Deleted |
400 | Bad request |
401 | Authentication required |
403 | Forbidden - ADMIN role necessary |
404 | Required entity not found |
Update list of entity users, users not included in given list are removed from entity.
Name | Description |
---|---|
id * string (path) | Entity id |
users array[string] (body) | Array of user logins representing exactly the intended list of entity users after update
|
Code | Description |
200 | Updated |
400 | Bad request |
401 | Authentication required |
403 | Forbidden - ADMIN role necessary |
404 | Required entity not found |
ONLY add users to entity (no deletion).
Name | Description |
---|---|
id * string (path) | Entity id |
users array[string] (body) | Array of user logins to be added to entity
|
Code | Description |
200 | Updated |
400 | Bad request |
401 | Authentication required |
403 | Forbidden - ADMIN role necessary |
404 | Required entity not found |
remove all users from entity.
Name | Description |
---|---|
id * string (path) | Entity id |
Code | Description |
200 | Deleted |
400 | Bad request |
401 | Authentication required |
403 | Forbidden - ADMIN role necessary |
404 | Required entity not found |
ONLY remove user from entity (no addition).
Name | Description |
---|---|
id * string (path) | Entity id |
login * string (path) | User login |
Code | Description |
200 | Deleted |
400 | Bad request |
401 | Authentication required |
403 | Forbidden - ADMIN role necessary |
404 | Required entity not found |
Everything concerning perimeters
Fetch a list of all existing perimeters.
No parameters
Code | Description |
200 | OK
|
401 | Authentication required |
403 | Forbidden - ADMIN role necessary |
Create a new perimeter.
Name | Description |
---|---|
perimeter object (body) | Perimeter to be created
|
Code | Description |
201 | Created
|
400 | Bad request (duplicate key) |
401 | Authentication required |
403 | Forbidden - ADMIN role necessary |
Update existing perimeter.
Name | Description |
---|---|
id * string (path) | Id of perimeter to be updated (should match id in request body) |
perimeter object (body) | Updated perimeter data (should match id path parameter)
|
Code | Description |
200 | Updated
|
201 | Created
|
400 | Bad request (body doesn't match id path parameter) |
401 | Authentication required |
403 | Forbidden - ADMIN role necessary |
Fetch an existing perimeter.
Name | Description |
---|---|
id * string (path) | Perimeter id |
Code | Description |
200 | OK
|
401 | Authentication required |
403 | Forbidden - ADMIN role necessary |
404 | Required perimeter not found |
Remove a perimeter
Name | Description |
---|---|
id * string (path) | Perimeter id |
Code | Description |
200 | Deleted |
400 | Bad request |
401 | Authentication required |
403 | Forbidden - ADMIN role necessary |
404 | Required perimeter not found |
Update list of groups that have this perimeter, groups not included in given list lose this perimeter.
Name | Description |
---|---|
id * string (path) | Perimeter id |
groups array[string] (body) | Array of group id representing exactly the intended list of groups that must have this perimeter after update
|
Code | Description |
200 | Updated |
400 | Bad request |
401 | Authentication required |
403 | Forbidden - ADMIN role necessary |
404 | Required perimeter not found |
ONLY add groups to perimeter (no deletion).
Name | Description |
---|---|
id * string (path) | Perimeter id |
groups array[string] (body) | Array of group id to be added to perimeter
|
Code | Description |
200 | Updated |
400 | Bad request |
401 | Authentication required |
403 | Forbidden - ADMIN role necessary |
404 | Required perimeter not found |
remove all groups from perimeter.
Name | Description |
---|---|
id * string (path) | Perimeter id |
Code | Description |
200 | Deleted |
400 | Bad request |
401 | Authentication required |
403 | Forbidden - ADMIN role necessary |
404 | Required perimeter not found |
ONLY remove group from perimeter (no addition).
Name | Description |
---|---|
idPerimeter * string (path) | Perimeter id |
idGroup * string (path) | Group id |
Code | Description |
200 | Deleted |
400 | Bad request |
401 | Authentication required |
403 | Forbidden - ADMIN role necessary |
404 | Required perimeter not found |
Fetch existing group's perimeters from their id.
Name | Description |
---|---|
id * string (path) | group id |
Code | Description |
200 | OK
|
401 | Authentication required |
403 | Forbidden - ADMIN role necessary |
404 | Required group not found |
Update list of perimeters for group, perimeters not included in given list are no longer linked to the group.
Name | Description |
---|---|
id * string (path) | Group id |
perimeters array[string] (body) | Array of perimeter id representing exactly the intended list of perimeters that must be linked to the group after update
|
Code | Description |
200 | Updated |
400 | Bad request |
401 | Authentication required |
403 | Forbidden - ADMIN role necessary |
404 | Required group not found |
ONLY add perimeters to group (no deletion).
Name | Description |
---|---|
id * string (path) | Group id |
perimeters array[string] (body) | Array of perimeter id to be added to group
|
Code | Description |
200 | Updated |
400 | Bad request |
401 | Authentication required |
403 | Forbidden - ADMIN role necessary |
404 | Required group not found |
Fetch existing user's perimeters from their login.
Name | Description |
---|---|
login * string (path) | user login |
Code | Description |
200 | OK
|
401 | Authentication required |
403 | Authenticated users who are not admins can only access their own data |
404 | Required user not found |
Get the list the user actions.
Name | Description |
---|---|
login array[string] (query) | usernames of the users who performed the actions |
action array[string] (query) | types of actions performed |
dateFrom number (query) | Date as number of milliseconds since epoch. If this query parameter is set, only cards with a publishDate that is after this date will be returned. This parameter should be unique or a BAD REQUEST will be returned. |
dateTo number (query) | Date as number of milliseconds since epoch. If this query parameter is set, only cards with a publishDate that is before this date will be returned. This parameter should be unique or a BAD REQUEST will be returned. |
page number (query) | Page number of the page to retrieve. If "size" is set but "page" isn't, the default page returned will be the first (number 0). If "page" is set but "size" isn't, the default size will be 10 items. If neither "page" nor "size" is set, the response will contain a single page containing all matching cards. This parameter should be unique or a BAD REQUEST will be returned. |
size number (query) | Size of the results pages. If "size" is set but "page" isn't, the default page returned will be the first (number 0). If "page" is set but "size" isn't, the default size will be 10 items. If neither "page" nor "size" is set, the response will contain a single page containing all matching cards. This parameter should be unique or a BAD REQUEST will be returned. |
Code | Description |
200 | OK
|