I have a versionID and I want to retrieve the project's ID, name, Key, Lead, Category, etc
I retrieve the projectID with a versionID via http/REST with:
rest/api/2/version/{versionId}
I can then retrieve the other project details from
rest/api/2/project/{projectId}
... How would I go about retrieving the same information from within scriptrunner script, without using http requests?
I've tried using the ComponentAccessor's versionManager like this:
import com.atlassian.jira.component.ComponentAccessor
def ProjectManager = ComponentAccessor.projectManager
def VersionManager = ComponentAccessor.versionManager
long version = 23958
def versionObject = VersionManager.getVersion(version)
log.warn(versionObject)
...but I can't figure out how to get the projectID from the version object in this manner.
Charles,
Is this for ScriptRunner for JIRA Server?
If so, you should should be able to call getProjectId() on the Version object.
import com.atlassian.jira.component.ComponentAccessor
def ProjectManager = ComponentAccessor.projectManager
def VersionManager = ComponentAccessor.versionManager
long version = 23958
def versionObject = VersionManager.getVersion(version)
log.warn(versionObject.projectId)
Thanks Joshua!
I actually used .getProjectId() on the version object for my final script (putting that into a new variable)
Now I know to keep digging in that api doc :)
You must be a registered user to add a comment. If you've already registered, sign in. Otherwise, register and sign in.
No problem. If you plan to write a lot of scripts, you might consider following our "Setting up a dev environment guide"
That functionality makes it a lot easier to see which methods are available for your objects (like Version).
You must be a registered user to add a comment. If you've already registered, sign in. Otherwise, register and sign in.
How can I get "project ids" from a collection of version ids?
Its necessary use for.each ? how I can show a later out the for.each the list with projects ids ?
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.