-
Notifications
You must be signed in to change notification settings - Fork 52
Closed
Labels
Description
We are making following call to fetch challenges
curl 'https://api.topcoder-dev.com/v5/challenges?sortBy=updated&sortOrder=desc&projectId=16573&status=New&page=1&perPage=50&memberId=22688955' \
-H 'authority: api.topcoder-dev.com' \
-H 'accept: application/json, text/plain, */*' \
-H 'authorization: Bearer <JWT_TOKEN>' \
-H 'accept-language: en-US,en;q=0.9' \
--compressed
But it is not returning the project with id 4975bfbd-2f19-411f-9c8c-b3c2302fb74c
while the user with id 22688955
is part of the resources of the project as can be seen with following call:
curl 'https://api.topcoder-dev.com/v5/resources?challengeId=4975bfbd-2f19-411f-9c8c-b3c2302fb74c' \
-H 'authority: api.topcoder-dev.com' \
-H 'accept: application/json, text/plain, */*' \
-H 'authorization: Bearer <JWT_TOKEN>' \
--compressed