This microservice totals employee's weekly benefit witholdings.
- http://localhost:8099/
- EUREKA SERVICE NAME: EMPBENEFITS
- /empBenefits/info
- /empBenefits/getbenefits
This microservice uses JSON for all input and output messages. It uses POST methods.
- /empBenefits/getbenefits
Method: POST
{
"employeeId": "11111"
}
{
"employeeId": 11111,
"totalWitholdings": 125,
"currency": "USD"
}
{
"employeeId": 11111
"errorMsg": "NOT_FOUND"
}
The following guides illustrates how to use certain features correctly: