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: 

Salesforce to Jira Callout Failed !

Hitesh Paarth
I'm New Here
I'm New Here
Those new to the Atlassian Community have posted less than three times. Give them a warm welcome!
October 17, 2018

When ever trying to hit the Jira Api's

Getting below response:

JSON Response: {"errorMessages":["Issue does not exist or you do not have permission to see it."],"errors":{}}

Moreover When i directly try to hit the endpoint URL , It works for me.

I have admin access for my user and still getting this error.

 

Below is the code snippet 

public string username ='XXXXXX';
public string password ='XXXXXXXXX';
HTTP h = new HTTP();
HTTPRequest r = new HTTPRequest();
r.setEndpoint('https://wuservicecloud.atlassian.net/rest/api/latest/issue/38281');

System.debug('User name'+username );
System.debug('Password'+password);
Blob headerValue = Blob.valueOf(username+':'+password);
String authorizationHeader = 'BASIC ' + EncodingUtil.base64Encode(headerValue);
r.setHeader('Authorization', authorizationHeader);
r.setHeader('Content-Type','application/json');
r.setMethod('GET');
System.debug('authorizationHeader ---->'+authorizationHeader );
HTTPResponse res = h.send(r);
System.debug('JSON Response: ' + res.getBody());

 

 

 

Kindly assist

1 comment

Comments for this post are closed

Community moderators have prevented the ability to post new comments.

Nic Brough -Adaptavist-
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.
October 17, 2018

Looks like the user you are using does not have access to that project (remember, Admin rights mean Admin, not "arbitrarily access everything").  Or it doesn't exist.

TAGS
AUG Leaders

Atlassian Community Events