curl --request POST \
--url https://api.staging.fluxpayroll.ai/api/mexico-payroll/calculate \
--header 'Content-Type: application/json' \
--header 'x-api-key: <api-key>' \
--data '
{
"employees": [
{
"employeeId": "emp-basic-salary-001",
"employeeStartDate": "2020-01-01",
"dailyWage": 500,
"earnings": [
{
"earningCode": "SALARY",
"amount": 15000
}
],
"previousBimesterEarnigs": [],
"workAddress": {
"state": "AGU"
},
"workerRiskClass": "I"
}
],
"payrollConfig": {
"startDate": "2025-09-01",
"endDate": "2025-09-30",
"period": "MONTHLY"
}
}
'