bulkIgnoreFriendRequests abstract method

  1. @POST.new('/users/@me/relationships/bulk-ignore')
Future<BulkIgnoreFriendRequestsResponse> bulkIgnoreFriendRequests({
  1. @Body.new() required BulkIgnoreFriendRequestsRequest body,
})

Bulk ignore friend requests.

Ignores (removes) multiple incoming friend requests at once. Optionally filters by sender account age to target requests from new accounts.

body - Name not received - field will be skipped.

Implementation

@POST('/users/@me/relationships/bulk-ignore')
Future<BulkIgnoreFriendRequestsResponse> bulkIgnoreFriendRequests({
  @Body() required BulkIgnoreFriendRequestsRequest body,
});