Unable to GET issuetype properties

I am unable to get the issuetype properties. Returns an empty list for all issuetype. Example below

GET request:
https://intercax.atlassian.net/rest/api/2/issuetype/1/properties

response:
{
“keys”:
}

Have you set any properties? You should receive an empty array unless you set a property already.

Just in case you haven’t see it yet, there is some documentation about entity properties. As Ralph wrote, they don’t exist inherently; you have to add them to an issue type before retrieving them.

2 Likes

I think this is close to what I am looking for
GET /rest/api/2/issue/{issueIdOrKey}/editmeta

Is there a more general call where I can get the fields like above for any type of issue, like Bug, Improvement, etc… Currenly I would need to specify a specific issueIdOrKey.