Register a User
Prerequisite reading
User resource
Registering a single user
Register a student into the default Students user group
curl --location --request POST 'https://api.synap.ac/v3/user-registrations' \
--header 'Authorization: Bearer <PAT>' \
--header 'Content-Type: application/vnd.api+json' \
--data-raw '{
"data": {
"type": "UserRegistration",
"attributes": {
"name": "First Last",
"emailAddress": "f.last@domain.com",
"password": "PasswordABC123!"
},
"relationships": {}
}
}'Register an educator into an Educator User Group
Register a student into a specific Sub Portal
Specify time zone, locale and disable welcome email
Add Custom Attributes
Registering multiple users
Last updated
Was this helpful?