destroyFeaturedTag abstract method

Future<MastodonResponse<Empty>> destroyFeaturedTag({
  1. required String tagId,
})

Stop promoting a hashtag on your profile.

Parameters

  • tagId: The ID of the FeaturedTag in the database.

Endpoint Url

  • DELETE /api/v1/featured_tags/:id HTTP/1.1

Authentication Methods

  • OAuth 2.0

Required Scopes

  • write:accounts

Reference

Implementation

Future<MastodonResponse<Empty>> destroyFeaturedTag({
  required String tagId,
});