deleteProperty method
Removes a property from an organization.
Permissions required: Service Desk Administrator or Agent.
Note: Permission to manage organizations can be switched to users with the Jira administrator permission, using the Organization management feature.
Implementation
Future<void> deleteProperty(
{required String organizationId, required String propertyKey}) async {
await _client.send(
'delete',
'rest/servicedeskapi/organization/{organizationId}/property/{propertyKey}',
pathParameters: {
'organizationId': organizationId,
'propertyKey': propertyKey,
},
);
}