curl --request POST \
--url https://app.synkrony.ai/api/v1/users \
--header 'Authorization: Bearer <token>' \
--header 'Content-Type: application/json' \
--data '
{
"user": {
"email": "maria@example.com",
"role": "member",
"project_ids": [
1,
2
]
}
}
'