Hi all,
Having issues with OData $select on the following end points (that I have been working with so far):
- Payrun /api/v2/business/{businessId}/payrun
- Timesheets /api/v2/business/{businessid}/timesheet
For example the following query works fine without $select:
/api/v2/business/{businessId}/payrun?$filter=Id eq 276987
But as soon as I add the $select into the mix: E.g.
/api/v2/business/{businessId}/payrun?$select=Id&$filter=Id eq 276987
Response:
Status 500 Internal Server Error
{
“message”: “An error has occurred.”
}
In comparison, the Employee endpoint works fine:
/api/v2/business/{businessId}/employee/unstructured?$select=Id
Am I missing something?