The Atlassian Community Forums are currently in read-only mode. We will be relaunching on a new platform on September 22 (read more here). We apologize for the extended downtime. For concerns or questions, please email communitymanagers@atlassian.com. See you on the other side, on the new Atlassian Community Forums! :)

×

Forums

Articles
Create
cancel
Showing results for 
Search instead for 
Did you mean: 

Why Rest API call is not working?

Scheibli Márk
August 17, 2017

Hello!

At the moment i'm working in js with Rest API. I want to get the issues for a project on this way:

$.get(AJS.contextPath() + "/rest/api/2/search?jql=project=" + is_data, function( data ) {});

It is working like this:

If the is_data are the names of the projects then if i try to get a two words named project's issues i get an error message, but if i try with one words named projects then it is working totally fine. If i try to put the project keys in the is_data, then it is working fine with the two words named projects and some of the one word named projects but if i have a project named like this: OneTry, then the key is ON and it can not get the issues because of failed Rest API call.

I totally don't know what is the problem. Should i somehow transfer the two words named projects?

1 answer

Comments for this post are closed

Community moderators have prevented the ability to post new answers.

0 votes
Aleksandr Zuevich
Rising Star
Rising Star
Rising Stars are recognized for providing high-quality answers to other users. Rising Stars receive a certificate of achievement and are on the path to becoming Community Champions.
August 17, 2017

Hi, try to add single quotes to each project name.

Scheibli Márk
August 17, 2017

Yes, that is the best option.