When I try to fetch data /jobcode_assignments passing more than one user id, it works just fine, but when I include a specific user id (this the same user who generated the token) the API ignores ids of other users and retrieves only info from this specific user.
Something like: /jobcode_assignments passing user_ids: "123,456,789" works fine, the API returns information for all users.
But on: /jobcode_assignments passing user_ids: "123,id_of_specific_user,789" the API ignores users ids 123 and 789 and only returns the jobcode_assignments for the specific user.
Is this a BUG or am I missing some configuration or some param of the request ?