deleteFavouriteForFilter method

Future<Filter> deleteFavouriteForFilter({
  1. required int id,
  2. String? expand,
})

Removes a filter as a favorite for the user. Note that this operation only removes filters visible to the user from the user's favorites list. For example, if the user favorites a public filter that is subsequently made private (and is therefore no longer visible on their favorites list) they cannot remove it from their favorites list.

Permissions required: Permission to access Jira.

Implementation

Future<Filter> deleteFavouriteForFilter(
    {required int id, String? expand}) async {
  return Filter.fromJson(await _client.send(
    'delete',
    'rest/api/3/filter/{id}/favourite',
    pathParameters: {
      'id': '$id',
    },
    queryParameters: {
      if (expand != null) 'expand': expand,
    },
  ));
}