For a given issue type, I have behaviours that show/hide certain custom fields on the edit screen based on certain conditions. These custom fields are not marked as "Required" . On the resolve issue screen, I am adding a workflow validator to make certain fields mandatory based on the resolution that's being picked. A subset of custom fields will get checked, if they're not hidden and have null values, I'll throw an exception. Is there a way to find out if a certain custom field is visible or not. Sample code below for illustration:
Hi @Jihad Sabra,
you could call the not documented Jira's API:
/rest/whereismycf/1.0/fields/{id} [GET]
Query parameters:
Either 'issueKey', or 'projectKey' or 'projectId' parameter must be provided in the request
Also the issueOperation:
0 create
1 edit
2 view
Then you should get the response status that could be "green" or "red". In the first case the field is visible, else it's hidden.
You could test the rest also in web browser calling an url as the following:
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.