curl --location --request POST '/api/user/login' \
--header 'Content-Type: application/json' \
--data-raw '{
"email": "admin@example.com",
"password": "password123"
}'{
"message": "Login successful",
"data": {
"token": "eyJhbGciOiJIUzI1NiIsInR5cCI6IkpXVCJ9...",
"device_token": "550e8400-e29b-41d4-a716-446655440000",
"expires_in": 86400,
"is_2fa": false,
"user": {
"id": 1,
"name": "Admin",
"email": "admin@example.com",
"role": "admin"
}
}
}