You cannot select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
21 lines
438 B
Plaintext
21 lines
438 B
Plaintext
"""
|
|
curl -X 'POST' \
|
|
'https://forge.gwenaelremond.fr/api/v1/admin/users' \
|
|
-H 'accept: application/json' \
|
|
-H 'Authorization: token XXXX'\
|
|
-H 'Content-Type: application/json' \
|
|
-d '{
|
|
"email": "user@example.com",
|
|
"full_name": "dupont",
|
|
"login_name": "dupont",
|
|
"must_change_password": true,
|
|
"password": "blabla%TulPoint45",
|
|
"restricted": true,
|
|
"send_notify": false,
|
|
"source_id": 0,
|
|
"username": "dupont"
|
|
|
|
}'
|
|
"""
|
|
|