destroyReblog abstract method

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

Undo a re-share of a status.

Parameters

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

Endpoint Url

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

Authentication Methods

  • OAuth 2.0

Required Scopes

  • write:statuses

Reference

Implementation

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