sendDsaReportEmail abstract method

  1. @POST.new('/reports/dsa/email/send')
Future<OkResponse> sendDsaReportEmail({
  1. @Body.new() required DsaReportEmailSendRequest body,
})

Send DSA report email.

Initiates DSA (Digital Services Act) report submission by sending verification email to reporter.

body - Name not received - field will be skipped.

Implementation

@POST('/reports/dsa/email/send')
Future<OkResponse> sendDsaReportEmail({
  @Body() required DsaReportEmailSendRequest body,
});