checkProfileSubstringBanStatus abstract method

  1. @POST.new('/admin/bans/profile-substring/check')
Future<BanCheckResponseSchema> checkProfileSubstringBanStatus({
  1. @Body.new() required BanProfileSubstringRequest body,
})

Check profile-substring ban status.

Query whether any of the provided substrings are banned for the given scope.

body - Name not received - field will be skipped.

Implementation

@POST('/admin/bans/profile-substring/check')
Future<BanCheckResponseSchema> checkProfileSubstringBanStatus({
  @Body() required BanProfileSubstringRequest body,
});