deleteDashboardItemProperty method

Future<void> deleteDashboardItemProperty({
  1. required String dashboardId,
  2. required String itemId,
  3. required String propertyKey,
})

Deletes a dashboard item property.

This operation can be accessed anonymously.

Permissions required: The user must be the owner of the dashboard. Note, users with the Administer Jira global permission are considered owners of the System dashboard.

Implementation

Future<void> deleteDashboardItemProperty(
    {required String dashboardId,
    required String itemId,
    required String propertyKey}) async {
  await _client.send(
    'delete',
    'rest/api/3/dashboard/{dashboardId}/items/{itemId}/properties/{propertyKey}',
    pathParameters: {
      'dashboardId': dashboardId,
      'itemId': itemId,
      'propertyKey': propertyKey,
    },
  );
}