curl --request POST \
--url https://api.example.com/api/auth/register{
"message": "Usuario registrado con éxito"
}
curl --request POST \
--url https://api.example.com/api/auth/register{
"message": "Usuario registrado con éxito"
}
{
"message": "Usuario registrado con éxito"
}
curl -X POST https://api.example.com/api/auth/register \
-H "Content-Type: application/json" \
-d '{
"email": "patient@example.com",
"password": "securePassword123",
"name": "John Doe"
}'
PATIENT role