lookupScheduledStatus abstract method

Future<MastodonResponse<ScheduledStatus>> lookupScheduledStatus({
  1. required String statusId,
})

View scheduled statuses.

Parameters

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

Endpoint Url

  • GET /api/v1/scheduled_statuses/:id HTTP/1.1

Authentication Methods

  • OAuth 2.0

Required Scopes

  • read:statuses

Reference

Implementation

Future<MastodonResponse<ScheduledStatus>> lookupScheduledStatus({
  required String statusId,
});