deleteProjectProperty method

Future<void> deleteProjectProperty({
  1. required String projectIdOrKey,
  2. required String propertyKey,
})

Deletes the property from a project.

This operation can be accessed anonymously.

Permissions required: Administer Jira global permission or Administer Projects project permission for the project containing the property.

Implementation

Future<void> deleteProjectProperty(
    {required String projectIdOrKey, required String propertyKey}) async {
  await _client.send(
    'delete',
    'rest/api/3/project/{projectIdOrKey}/properties/{propertyKey}',
    pathParameters: {
      'projectIdOrKey': projectIdOrKey,
      'propertyKey': propertyKey,
    },
  );
}