curl --location --request POST '/api/auth/register' \
--header 'Content-Type: application/json' \
--data-raw '{
"fullName": "Abdullatif",
"email": "abdullatif.jarkas1@gmail.com",
"password": "12345678",
"confirmPassword": "12345678",
"phoneNumber": "+963932712098"
}'
{
"status": "success",
"data": {
"user": {
"_id": "681e3660e89c882df0e692db",
"fullName": "test",
"email": "test9@gmail.com",
"phoneNumber": "+963932712098",
"role": "user"
}
}
}