checkEmailBanStatus abstract method
- @POST.new('/admin/bans/email/check')
- @Body.new() required BanEmailRequest body,
Check email ban status.
Query whether one or more email addresses are currently banned from registration. Returns the ban status and metadata.
body - Name not received - field will be skipped.
Implementation
@POST('/admin/bans/email/check')
Future<BanCheckResponseSchema> checkEmailBanStatus({
@Body() required BanEmailRequest body,
});