getIssueTypeProperty method

Future<EntityProperty> getIssueTypeProperty({
  1. required String issueTypeId,
  2. required String propertyKey,
})

Returns the key and value of the issue type property.

This operation can be accessed anonymously.

Permissions required:

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

Implementation

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