Versions Compared

Key

  • This line was added.
  • This line was removed.
  • Formatting was changed.
Table of Contents
minLevel1
maxLevel7

Note

Saving data to entity property can unveil data if you can see the issue but cannot see the checklist

Available properties

Issue Checklist sets the issue entity property checklist JSON object with the following fields/properties inside:

...

Note

Entity properties are read-only.  Changes made directly to the entity properties will not update the checklist and will be overwritten by changes made in the checklist UI (or in any other valid way such as through the API, Checklist Text field, automation, a post function, etc.).

Entity properties can be used in:

  • Automation
    In Automation rules, issue entity properties can be accessed through the smart values feature, e.g. 

Code Block
{{issue.properties.checklist.progressText}}

Get Entity Properties

You can get an issue’s entity properties in the following ways:

...

  • your-domain with your Jira URL

  • {issueKey} with valid Jira issue key

  • email@example.com with your email

  • api_token with your API token

Code Block
curl --request GET \
  --url 'https://your-domain.atlassian.net/rest/api/2/issue/{issueKey}?properties=*all' \
  --user 'email@example.com:<api_token>' \
  --header 'Accept: application/json'

...