Versions Compared

Key

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

While retrieving an Asset object from an Asset custom field in Jira is possible via the insightFieldValue custom Nunjucks filter, not all attributes of that Asset object can be returned with it. However, the filter does return returns the Asset object’s URL, and we can leverage Jira Cloud’s Asset API to obtain other object attributes of the object.

\uD83D\uDCD8 Instructions

...

Parameters to take note of:

  1. customfield_xxxxx: This should be the ID of the Asset custom field.

  2. username: The email address used to log in to your Atlassian account.

  3. password: The value of an Atlassian API token generated at https://id.atlassian.com/manage-profile/security/api-tokens.
    (Note: the token value is only visible immediately after generation).

  4. objectTypeAttributeId: The Asset object’s attribute ID - you can view the ID of the Asset attribute by selecting your Asset object from the list at https://your-jira-cloud-site.atlassian.net/jira/servicedesk/assets and browsing the Attributes section.

For Jira Cloud APIs related to Assets you can use, you can consult https://developer.atlassian.com/cloud/assets/rest/api-group-aql/#api-group-aql

...