getIssueProperty method
Returns the key and value of an issue's property.
This operation can be accessed anonymously.
Permissions required:
- Browse projects project permission for the project containing the issue.
- If issue-level security is configured, issue-level security permission to view the issue.
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,
},
));
}