curl --request PUT \
--url https://api.example.com/api/v1/school/users/{id}/ \
--header 'Authorization: Bearer <token>' \
--header 'Content-Type: application/json' \
--data '
{
"email": "jsmith@example.com",
"first_name": "<string>",
"last_name": "<string>",
"password": "<string>",
"phone_number": "<string>",
"role_ids": [
"3c90c3cc-0d44-4b50-8888-8dd25736052a"
]
}
'