Create
cancel
Showing results for 
Search instead for 
Did you mean: 
Sign up Log in

Salesforce to Jira Callout Failed !

Hitesh Paarth 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

Comment

Log in or Sign up to comment
Nic Brough -Adaptavist-
Community Leader
Community Leader
Community Leaders are connectors, ambassadors, and mentors. On the online community, they serve as thought leaders, product experts, and moderators.
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