deleteIssueProperty method
Deletes an issue's property.
This operation can be accessed anonymously.
Permissions required:
- Browse projects and Edit issues project permissions for the project containing the issue.
- If issue-level security is configured, issue-level security permission to view the issue.
Implementation
Future<void> deleteIssueProperty(
{required String issueIdOrKey, required String propertyKey}) async {
await _client.send(
'delete',
'rest/api/3/issue/{issueIdOrKey}/properties/{propertyKey}',
pathParameters: {
'issueIdOrKey': issueIdOrKey,
'propertyKey': propertyKey,
},
);
}