createMute abstract method

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

Do not receive notifications for the thread that this status is part of. Must be a thread in which you are a participant.

Parameters

  • statusId: The ID of the Status in the database.

Endpoint Url

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

Authentication Methods

  • OAuth 2.0

Required Scopes

  • write:mutes

Reference

Implementation

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