You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
the requests for /company/attendances: /company/time-offs:
define the employees parameter as query (comma list)
the server denied such format with the message "the employees must be an array"
after some try and error, the personio server accepted a body json object with an integer array (or an empty array as well)
the response data matched also the expected result, so I assume the documentation is not up to date.
Here the changes:
- name: employeesin: queryrequired: falsedescription: A list of Personio employee ID's to filter the results. The result filters including only absences of provided employeesexplode: trueschema:
type: arrayitems:
type: integer
to
- name: employeesin: bodyrequired: falsedescription: A list of Personio employee ID's to filter the results. The result filters including only absences of provided employeesexplode: trueschema:
type: objectproperties:
employees:
type: arrayitems:
type: integer
The text was updated successfully, but these errors were encountered:
the requests for
/company/attendances:
/company/time-offs:
define the employees parameter as query (comma list)
the server denied such format with the message "the employees must be an array"
after some try and error, the personio server accepted a body json object with an integer array (or an empty array as well)
the response data matched also the expected result, so I assume the documentation is not up to date.
Here the changes:
to
The text was updated successfully, but these errors were encountered: