destroyFollowRequest abstract method

Future<MastodonResponse<Relationship>> destroyFollowRequest({
  1. required String accountId,
})

Reject follow request.

Parameters

  • accountId: The ID of the Account in the database.

Endpoint Url

  • POST /api/v1/follow_requests/:account_id/reject HTTP/1.1

Authentication Methods

  • OAuth 2.0

Required Scopes

  • follow
  • write:follows

Reference

Implementation

Future<MastodonResponse<Relationship>> destroyFollowRequest({
  required String accountId,
});