curl --request POST \
--url https://sandbox.hurdlr.com/rest/v5/taxes/userTaxSetup \
--header 'Authorization: Bearer <token>' \
--header 'Content-Type: */*' \
--data '
{
"userTaxSetup": {
"federalFilingStatus": "SINGLE",
"stateFilingStatus": "SINGLE",
"taxState": "DC",
"taxCountryCode": "<string>",
"annualW2Income": 10000,
"tipIncome": 5000,
"overtimeIncome": 3000,
"useW2Withholding": true,
"federalW2Withholding": 1000.51,
"stateW2Withholding": 1000.51,
"numExemptions": 1,
"useHomeOfficeDeduction": true,
"homeOfficeArea": 250.5,
"vehicleBusinessPercent": 49.9,
"useMileageDeduction": false,
"useUserEstimatedBusinessMileage": true,
"userEstimatedBusinessMileage": 1000,
"useUserEstimatedBusinessExpenses": true,
"userEstimatedBusinessExpenses": 551.76,
"useUserEstimatedBusinessRevenue": true,
"userEstimatedBusinessRevenue": 551.76
}
}
'