We use a separate 'release' project to track project releases, with tickets that show release dates etc.
I would like to be able to pull a 'date' field from an issue in a separate project into the 'release date' field of a fix version
Is it possible to access and populate fields in a fix version in this way?
Dear @[deleted],
In the result (JSON format), you should find some custom_{id} fields. One of them is your Date Time Picker. To identify which, (easiest way) go to Jira UI and hover with the mouse over the edit field of your custom field. The id displayed in the URL preview of your browser is important.
Please report back, if you were successful.
So long
Thomas
Dear @[deleted],
could you check my how-to? Did it work?
So long
Thomas
You must be a registered user to add a comment. If you've already registered, sign in. Otherwise, register and sign in.
Dear @[deleted],
with the power of the API, you can. REST call to get the issue. The JSON contains your custom field (date picker):
GET /api/2/issue/<issue key>
Then the update of a specific version:
PUT /rest/api/2/version/<id>
The put data (JSON) looks like this (taken from the API Doc):
{
"self": "http://www.example.com/jira/rest/api/2/version/10000",
"id": "10000",
"description": "An excellent version",
"name": "New Version 1",
"archived": false,
"released": true,
"releaseDate": "2010-07-06",
"overdue": true,
"userReleaseDate": "6/Jul/2010",
"projectId": 10000}
Was this helpful?
So long
Thomas
You must be a registered user to add a comment. If you've already registered, sign in. Otherwise, register and sign in.
Dear @[deleted],
you didn't came back - can I help you further?
So long
Thomas
You must be a registered user to add a comment. If you've already registered, sign in. Otherwise, register and sign in.
Hi @Thomas Deiler unfortunately I am quite new to JIRA so I don't quite understand how I would actually make an API call - is this done somewhere directly in JIRA or does it require a plugin?
You must be a registered user to add a comment. If you've already registered, sign in. Otherwise, register and sign in.
Dear @[deleted],
you don't need any plugin. Everything required is free available. So to get a feeling if you or colleagues can realize your requirement I recommend to install first a browser plugin to make a simple API call.
Which browser do you use?
So long
Thomas
You must be a registered user to add a comment. If you've already registered, sign in. Otherwise, register and sign in.
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.