Table of Contents | ||||
---|---|---|---|---|
|
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.
|
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 keyemail@example.com
with your emailapi_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' |
...