getIssuePropertyKeys method

Future<PropertyKeys> getIssuePropertyKeys(
  1. String issueIdOrKey
)

Returns the URLs and keys of an issue's properties.

This operation can be accessed anonymously.

Permissions required: Property details are only returned where the user has:

Implementation

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