I want to create a custom text field in user stories of JIRA. Once the custom field is created, when someone inserts/updates the custom field, I want to fetch the data on custom field to an external program in any format (i.e. String, JSON, .doc, .xls, .csv etc.)
Thanks in Advance,
Om
No, custom fields are not project specific, so you will need to be a Jira Admin (not project Admin) to be able to do this
You must be a registered user to add a comment. If you've already registered, sign in. Otherwise, register and sign in.
So, from the link I sent you above, let's say we just want the details of one issue. The format is here.
If I just use
/rest/agile/1.0/issue/{issueId}
I will be returned a JSON packet with ALL fields (default and custom), but I could pass in a parameter which would reduce the size of the JSON and only give me the specified fields e.g.
/rest/agile/1.0/issue/{issueId}?fields=key,customfield_xxxxx,customfield_yyyyy,description
The fields parameter is applicable for most of the API calls
You must be a registered user to add a comment. If you've already registered, sign in. Otherwise, register and sign in.
Hi,
Is it possible to do this but instead of putting the data into an external program, have it show in a separate custom field?
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.
You must be a registered user to add a comment. If you've already registered, sign in. Otherwise, register and sign in.