getIssueTypePropertyKeys method

Future<PropertyKeys> getIssueTypePropertyKeys(
  1. String issueTypeId
)

Returns all the issue type property keys of the issue type.

This operation can be accessed anonymously.

Permissions required:

  • Administer Jira global permission to get the property keys of any issue type.
  • Browse projects project permission to get the property keys of any issue types associated with the projects the user has permission to browse.

Implementation

Future<PropertyKeys> getIssueTypePropertyKeys(String issueTypeId) async {
  return PropertyKeys.fromJson(await _client.send(
    'get',
    'rest/api/3/issuetype/{issueTypeId}/properties',
    pathParameters: {
      'issueTypeId': issueTypeId,
    },
  ));
}