-
Notifications
You must be signed in to change notification settings - Fork 100
[HOW TO] Create a new ChRIS user account through the ChRIS API
Jorge edited this page Apr 16, 2024
·
1 revision
Just make an unauthenticated POST request to the /api/v1/users/
ChRIS API end-point with the required username
, password
and email
descriptors
For instance, using the httpie client and assuming that the ChRIS service is running at localhost:8000
:
http POST http://localhost:8000/api/v1/users/ \
Content-Type:application/vnd.collection+json \
Accept:application/vnd.collection+json \
template:='{
"data":[{"name":"email","value":"[email protected]"},
{"name":"password","value":"newuser1234"},
{"name":"username","value":"newuser"}]
}'