curl --location '/api/v1/auth/login' \
--header 'Content-Type: application/json' \
--data-raw '{
"username": "user@example.com",
"password": "pa$$word"
}'{
"success": true,
"data": {
"access_token": "string",
"refresh_token": "string",
"id_token": "string",
"expires_in": 300,
"token_type": "Bearer"
}
}