Reputation: 175
I am implementing a job importing entries into JIRA via REST API. Each JIRA entry has a bunch of custom fields which have to be filled. Unlike the JIRA default fields custom fields are created with a meaningless internal id (customfield-'incremental-number').
It would be really painful to find out which custom field number belongs to which field. Furthermore currently I am running on a test system and the ids will probably change with the switch to production system...
Is there any possibility to rename the internal JIRA field id of custom fields?
Upvotes: 0
Views: 1237
Reputation: 6881
You can't change the id of custom fields but you can use the REST API to find the list of names and ids: /rest/api/latest/field
Upvotes: 1