Skip to main content
Skip table of contents

Get Issue Entity Properties

New Feature Announcement

Global Checklists are currently in BETA and will be available in Issue Checklist for Jira ENTERPRISE once released. Contact our support team if you currently use Issue Checklist for Jira PRO would like to participate in the Beta.

If you need to find issue entity properties for support purposes, you can get them through one of the following ways:

Jira API REST Request

Open terminal (command-line interface) and execute the following curl command, replacing:

  • 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
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'

You can also make the request through a third-party tool such as Postman.

Entity Property Tool App

  1. Install the Entity Property Tool app.

  2. Open the issue page.

  3. Select the Entity properties tab to see the details of the entity properties.


JavaScript errors detected

Please note, these errors can depend on your browser setup.

If this problem persists, please contact our support.