destroyFollowingTag abstract method

Future<MastodonResponse<Tag>> destroyFollowingTag({
  1. required String tagId,
})

Unfollow a hashtag.

Posts containing this hashtag will no longer be inserted into your home timeline.

Parameters

  • tagId: The name of the hashtag.

Endpoint Url

  • POST /api/v1/tags/:id/unfollow HTTP/1.1

Authentication Methods

  • OAuth 2.0

Required Scopes

  • write:follows

Reference

Implementation

Future<MastodonResponse<Tag>> destroyFollowingTag({
  required String tagId,
});