我正在尝试通过POST /payroll.xro/2.0/Timesheets
API端点发送时间表。我收到答复说我的字段无效。
这是我的请求正文(已替换ID):
{
"payrollCalendarID":"CALENDAR_ID",
"employeeID":"EMPLOYEE_GUID",
"startDate":"2019-02-22T00:00:00",
"endDate":"2019-03-01T00:00:00"
}
在“问题”响应中,我有这个问题:
"invalidFields":[{"name":"EmployeeID","reason":"The employee is required"}]
我尝试将字段更改为EmployeeID并将正文作为XML发送,但无济于事。
我在做什么错了?