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
When requesting user jobs in a project from a Collection<UserJob>, the response is 404.
The reason is that the request url created by the client code is the following: https://server.com/api/project/{projectId}/userJob.json
However, it should be the following (with userjob in lowercase): https://server.com/api/project/{projectId}/userjob.json
I think this comes from the UserJob class that makes explicit the use of a capital J.
The text was updated successfully, but these errors were encountered:
When requesting user jobs in a project from a
Collection<UserJob>
, the response is 404.The reason is that the request url created by the client code is the following:
https://server.com/api/project/{projectId}/userJob.json
However, it should be the following (with userjob in lowercase):
https://server.com/api/project/{projectId}/userjob.json
I think this comes from the UserJob class that makes explicit the use of a capital J.
The text was updated successfully, but these errors were encountered: