curl --request POST \
--url https://api.example.com/api/users \
--header 'Content-Type: application/json' \
--data '
{
"email": "<string>",
"password": "<string>",
"role": "<string>",
"firstName": "<string>",
"lastName": "<string>",
"phone": "<string>",
"address": "<string>",
"supervisorId": "<string>"
}
'