issueIDFromKey()

This function returns the internal

ID of a given issue key, or a comma-separated list of issue keys.


Bash
issueIDFromKey(issueKeys) #Output: Text


Examples

Parser expression

Description

Bash
issueIDFromKey("CRM-1")

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

10001

Bash
issueIDFromKey(%{issue.links})

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

60355, 56667


Additional information

Parameters used in this function

Parameter

Input (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