listReports abstract method
- @POST.new('/admin/reports/list')
- @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,
});