Forums

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

Is there an API for Portfolio Cloud?

Kyle Moseley
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 Leaders.
December 18, 2018

Does a REST API exist for Portfolio for Jira Cloud? I can see that APIs exist for the Server version of the product but no clear "yes" or "no" on Cloud.

1 answer

1 accepted

2 votes
Answer accepted
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 Leaders.
December 18, 2018

Hi Kyle,

I suppose exist. For example I've just tried /rest/teams/1.0/teams/find.

Kyle Moseley
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 Leaders.
December 18, 2018

What sort of response do you get with that? I just get an error when testing: https://portfoliotest1.atlassian.net/rest/teams/1.0/teams/find

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 Leaders.
December 18, 2018

I sent POST request

url: AJS.params.baseURL + "/rest/teams/1.0/teams/find",
type: "POST",
dataType: 'json',
contentType: 'application/json; charset=utf-8',
headers: {
"Accept": "application/json"
},
data: JSON.stringify({"maxResults": 1000})

and got teams in response. 

Kyle Moseley
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 Leaders.
December 19, 2018

Thanks. I imitated that and got a successful response. Apparently the REST API does exist for Portfolio Cloud but it's just not advertised?

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 Leaders.
December 19, 2018

Yes, it is private API for internal portfolio purposes. So it could be unstable between portfolio releases. I found this endpoint using network browser tab at portfolio page.

Tim Padgett May 21, 2019

@Aleksandr Zuevich any chance you eventually found a doc/swagger for that API?  I'm stumped on how to further clarify that API.

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 Leaders.
May 21, 2019

I used free plugin Atlassian REST API Browser for Jira server version and noticed that there is the same endpoint for Jira cloud version. Atlassian REST API Browser is like swagger where you can send request with parameters.

Tim Padgett May 21, 2019

hmm, looks like that's only for server, whereas i'm using cloud.   rats!

Suggest an answer

Log in or Sign up to answer