{
"username": "string",
"password": "string"
}curl --location --request POST '/auth/login' \
--header 'Authorization: Bearer <token>' \
--header 'Content-Type: application/json' \
--data-raw '{
"username": "string",
"password": "string"
}'{
"success": true,
"data": {
"token": "string",
"user": {
"id": 0,
"username": "string",
"email": "user@example.com",
"role": "super_admin",
"status": "active",
"created_at": "2019-08-24T14:15:22Z"
}
},
"message": "string"
}