bulkEditDashboards method

Bulk edit dashboards. Maximum number of dashboards to be edited at the same time is 100.

Permissions required: None

The dashboards to be updated must be owned by the user, or the user must be an administrator.

Implementation

Future<BulkEditShareableEntityResponse> bulkEditDashboards(
    {required BulkEditShareableEntityRequest body}) async {
  return BulkEditShareableEntityResponse.fromJson(await _client.send(
    'put',
    'rest/api/3/dashboard/bulk/edit',
    body: body.toJson(),
  ));
}