I am using the below code to create new users, but the user avatar won't change instead it creates its own image using first letter of username
'data' => array(
'type' => "users",
'attributes' => array(
'username' => "USERNAME",
'password' => "PASSWORD",
'email' => "example@gmail.com",
'avatarUrl' => "https://i.imgur.com/uvwxyz.png"
),
'relationships' => array(
'groups' => array(
'data' => array(
array(
'type' => 'groups',
'id' => "2"
)
)
)
)
)
apart from that it also requires me to disable RECAPTCHA to be able to execute new users