addSuspiciousEmailDomain abstract method
- @POST.new('/admin/suspicious-email-domains/add')
- @Body.new() required SuspiciousEmailDomainRequest body,
Add suspicious email domain.
Flag an email domain as suspicious. Registration is not blocked, but new accounts using this domain are required to verify a phone number before they can act on the platform. The list itself is not exposed to users — they only see the verified-phone gate.
body - Name not received - field will be skipped.
Implementation
@POST('/admin/suspicious-email-domains/add')
Future<void> addSuspiciousEmailDomain({
@Body() required SuspiciousEmailDomainRequest body,
});