-
Notifications
You must be signed in to change notification settings - Fork 7
Expand file tree
/
Copy path06-create-users.py
More file actions
executable file
·37 lines (30 loc) · 1.46 KB
/
06-create-users.py
File metadata and controls
executable file
·37 lines (30 loc) · 1.46 KB
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
31
32
33
34
35
36
37
#!/usr/bin/env python
import elabapi_python
from client import api_client
#### SCRIPT START #####
# Description: create users in batch
#######################
# Load users api
users = elabapi_python.UsersApi(api_client)
# the default team in which we want to create the users
# if this parameter is not passed, it will be the team in which the api key in use has been created
default_team = 1
# A list of dictionaries holding the users we wish to create.
users_to_create = [
{'firstname': 'John', 'lastname': 'Rambo', 'email': 'john.rambo@example.com', 'team': 2},
{'firstname': 'Nicolas', 'lastname': 'Tesla', 'email': 'nico@tesla.eu', 'team': default_team},
{'firstname': 'Arthur', 'lastname': 'Martin', 'email': 'tutur@martin.fr', 'team': 3},
# This user will end up in the team where the api key has been created
{'firstname': 'Michael', 'lastname': 'Jordan', 'email': 'mike@air.com'},
]
# now loop over the list and create users
for user in users_to_create:
# create the user by passing directly the dict in the body
response = users.post_user_with_http_info(body=user)
# look for the userid in the Location response header
locationHeaderInResponse = response[2].get('Location')
userid = int(locationHeaderInResponse.split('/').pop())
print(f'Created user with id: {userid} in team: {user.get("team", default_team)}.')
print('--------------')
print('Now add user with id 1 to team 3')
users.patch_user(1, body={'action': 'add', 'team': 3})