getIssueProperty method

Future<EntityProperty> getIssueProperty({
  1. required String issueIdOrKey,
  2. required String propertyKey,
})

Returns the key and value of an issue's property.

This operation can be accessed anonymously.

Permissions required:

Implementation

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