destroyPinnedStatus abstract method

Future<MastodonResponse<Status>> destroyPinnedStatus({
  1. required String statusId,
})

Un-feature a status from the top of your profile.

Parameters

  • statusId: The local ID of the Status in the database. The status should be authored by the authorized account.

Endpoint Url

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

Authentication Methods

  • OAuth 2.0

Required Scopes

  • write:accounts

Reference

Implementation

Future<MastodonResponse<Status>> destroyPinnedStatus({
  required String statusId,
});