I also struggled for about 24 hours solid with this as the docs example suggests application/json formatted requests for creating a new user be boolean for user_field …
I was being told I hadn’t finished all the required user fields … but in my case I have an existing requireduser_field I need to enter data into that field and it should be formatted like this:
{
"name": "Full Name",
"email": "email@address.com",
"password": "348hqpwfaed",
"username": "UserName",
"user_fields": {
"1": "Required User Field Data"
}
}
The above formatting worked for me.
Are the docs correct in this case for creating a new user?