destroyFollower abstract method

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

Remove the given account from your followers.

Parameters

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

Endpoint Url

  • POST /api/v1/accounts/:id/remove_from_followers HTTP/1.1

Authentication Methods

  • OAuth 2.0

Required Scopes

  • write:follows

Reference

Implementation

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