I need to get back a list of all projects from JIRA. I am using the rest api to retrieve back the results /rest/api/2/search?jql=project in("Project Mango")
.
In the browser it works. When I try to retrieve the data using VBA I am getting the following error :{"errorMessages":["The value 'Project Mango' does not exist for the field 'project'."],"errors":{}}
The reason "Project Mango" is in quotes it is because it contains a space i guess. Other projects that are not surronded in quotes works fine. I am using winhttp 5.1 to send and retrieve the text (vba). So I do not believe that is an issue but more of , the quotes?. I have tried """" or single quotes but same error. I have even tried to save the filter in jira and then call it but same issue. What else could I try?