This function returns the internal ID of a given issue key, or a comma-separated list of issue keys.
Syntax
issueIDFromKey(issueKeys) #Output: Text
Examples
Parser expressionDescription
Syntax
issueIDFromKey("CRM-1")

This example returns a text representing the internal-ID of the issue with the key "CRM-1", e.g.:

10001

Syntax
issueIDFromKey(%{issue.links})

This example returns a all internal IDs of linked issues, e.g.:

60355, 56667


Additional information

Parameters used in this function

ParameterInput (data type)Description
issueKeys

TEXT

Text containing issue keys in a comma-separated list.
Output

This function returns a TEXT

If you have the key and need the ID instead, try using: issueKeyFromID().

Use cases and examples