Following the documentation here: https://developer.atlassian.com/cloud/jira/platform/rest/v3/api-group-projects/#api-rest-api-3-project-search-get
Trying to get all projects by category, but I am getting results from other categories
https://XXXX.atlassian.net/rest/api/3/project/search?categoryID=10004
The REST APIs URLS are case sensitive. I think your problem is the categoryID should be categoryId.
this worked as expected for me:
https://ecosystem.atlassian.net/rest/api/3/project/search?categoryId=10070
And I only know this from pulling my hair out multiple times by making this very same mistake.
thank you David, my browser auto formats it to both captital which is really annoying, but it worked in Postman
You must be a registered user to add a comment. If you've already registered, sign in. Otherwise, register and sign in.
turns out clearing my browser history fixed the issue for access in the web browser, because i had previously visited the site with ID, every time i would input Id it would auto change it to ID
You must be a registered user to add a comment. If you've already registered, sign in. Otherwise, register and sign in.
You must be a registered user to add a comment. If you've already registered, sign in. Otherwise, register and sign in.