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.
Hi Kyle,
I suppose exist. For example I've just tried /rest/teams/1.0/teams/find.
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
You must be a registered user to add a comment. If you've already registered, sign in. Otherwise, register and sign in.
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.
You must be a registered user to add a comment. If you've already registered, sign in. Otherwise, register and sign in.
Thanks. I imitated that and got a successful response. Apparently the REST API does exist for Portfolio Cloud but it's just not advertised?
You must be a registered user to add a comment. If you've already registered, sign in. Otherwise, register and sign in.
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.
You must be a registered user to add a comment. If you've already registered, sign in. Otherwise, register and sign in.
@Aleksandr Zuevich any chance you eventually found a doc/swagger for that API? I'm stumped on how to further clarify that API.
You must be a registered user to add a comment. If you've already registered, sign in. Otherwise, register and sign in.
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.
You must be a registered user to add a comment. If you've already registered, sign in. Otherwise, register and sign in.
hmm, looks like that's only for server, whereas i'm using cloud. rats!
You must be a registered user to add a comment. If you've already registered, sign in. Otherwise, register and sign in.
Online forums and learning are now in one easy-to-use experience.
By continuing, you accept the updated Community Terms of Use and acknowledge the Privacy Policy. Your public name, photo, and achievements may be publicly visible and available in search engines.
You must be a registered user to add a comment. If you've already registered, sign in. Otherwise, register and sign in.