lookupEditHistory abstract method

Future<MastodonResponse<List<StatusEdit>>> lookupEditHistory({
  1. required String statusId,
})

Get all known versions of a status, including the initial and current states.

Parameters

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

Endpoint Url

  • GET /api/v1/statuses/:id/history HTTP/1.1

Authentication Methods

  • Anonymous
  • OAuth 2.0

Required Scopes

  • read:statuses

Reference

Implementation

Future<MastodonResponse<List<StatusEdit>>> lookupEditHistory({
  required String statusId,
});