destroyScheduledStatus abstract method

Future<MastodonResponse<Empty>> destroyScheduledStatus({
  1. required String statusId,
})

Cancel a scheduled status.

Parameters

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

Endpoint Url

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

Authentication Methods

  • OAuth 2.0

Required Scopes

  • write:statuses

Reference

Implementation

Future<MastodonResponse<Empty>> destroyScheduledStatus({
  required String statusId,
});