destroyFeaturedProfile abstract method

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

Remove the given account from the user’s featured profiles.

Parameters

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

Endpoint Url

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

Authentication Methods

  • OAuth 2.0

Required Scopes

  • write:accounts

Reference

Implementation

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