Versions Compared

Key

  • This line was added.
  • This line was removed.
  • Formatting was changed.

...

Let's say this Insight custom field is named "Insight Object (single select)." The definition will be:

${Insight Object (single select).<attribute>}

Status
colourBlue
titleACTIVE

${Insight Object (single select).<attribute>}

Status
colourYellow
titleDeprecaTED

As you can see, the mapping will be the name of the custom field followed by the attribute name, whichever might it be

Looking at the example below, we need to iterate over the Objects in this custom field so we can get all the values from each one. If you already know how to iterate over the Jira Issue comments, for example, this should be similar. 

Code Block
titleExpand to see the example on sample code
collapsetrue
#{for Insight Object (single select)}
	${Insight Object (single select)[n].Soc Security No}
	${Insight Object (single select)[n].Role}
	${Insight Object (single select)[n].Salary (USD)}
	${Insight Object (single select)[n].Created}
	${Insight Object (single select)[n].Updated}
#{end}
Code Block
titleDEPRECATED - Expand to see the example on sample code
collapsetrue
${Insight Object (single select).Soc Security No}
${Insight Object (single select).Role}
${Insight Object (single select).Created}
${Insight Object (single select).Salary (USD)}
${Insight Object (single select).Updated}

...