curl --location --request POST '/auth/login' \
--header 'Content-Type: application/json' \
--data-raw '{
"email": "user@email.com",
"password": "123456"
}'{
"success": true,
"message": "Login successful",
"data": {
"user": {
"id": 5,
"name": "user",
"email": "user@email.com",
"email_verified_at": null,
"created_at": "2026-03-27T06:33:03.000000Z",
"updated_at": "2026-03-27T06:33:03.000000Z"
},
"token": "3|vNW8dGwaDHeBlnpHc2ucaTFAKZ70u0JCypeg2uAKd2189d84"
}
}