listReports abstract method

  1. @POST.new('/admin/reports/list')
Future<ListReportsResponse> listReports({
  1. @Body.new() required ListReportsRequest body,
})

List reports.

Lists user and content reports with optional status filtering and pagination. Requires REPORT_VIEW permission.

body - Name not received - field will be skipped.

Implementation

@POST('/admin/reports/list')
Future<ListReportsResponse> listReports({
  @Body() required ListReportsRequest body,
});