Hello, thanks for this great forum you have created.
I am registering user via the API, while the registration works, the fields is_email_confirmed and avatar_url are not being set.
This is the json bein posted
[
'data' =>
[
'attributes' =>
[
"username" => $new_username,
"password" => $new_password,
"email" => $new_email,
"avatar_url" => $avatar_url,
"is_email_confirmed" => 1
]
]
]
Does anyone know how to store is_email_confirmed and avatar_url upon registration.
Thanks in advance.