title: scheduled_statuses API methods description: Manage statuses that were scheduled to be published at a future date. menu: docs:
weight: 30
name: scheduled_statuses
parent: methods-statuses
identifier: methods-scheduled_statuses
aliases: [ "/methods/scheduled_statuses", "/api/methods/scheduled_statuses", "/methods/statuses/scheduled_statuses",
GET /api/v1/scheduled_statuses HTTP/1.1
Returns: Array of ScheduledStatus\
OAuth: User token + read:statuses
\
Version history:\
2.7.0 - added\
3.3.0 - both min_id
and max_id
can be used at the same time now
Authorization
: {{}} Provide this header with Bearer <user token>
to gain authorized access to this API method.
max_id : String. All results returned will be lesser than this ID. In effect, sets an upper bound on results.
since_id : String. All results returned will be greater than this ID. In effect, sets a lower bound on results.
min_id : String. Returns results immediately newer than this ID. In effect, sets a cursor at this ID and paginates forward.
limit : Integer. Maximum number of results to return. Defaults to 20 statuses. Max 40 statuses.
[
{
"id": "3221",
"scheduled_at": "2019-12-05T12:33:01.000Z",
"params": {
"poll": null,
"text": "test content",
"media_ids": null,
"sensitive": null,
"visibility": null,
"idempotency": null,
"scheduled_at": null,
"spoiler_text": null,
"application_id": 596551,
"in_reply_to_id": null
},
"media_attachments": []
}
]
Invalid or missing Authorization header.
{
"error": "The access token is invalid"
}
GET /api/v1/scheduled_statuses/:id HTTP/1.1
Returns: ScheduledStatus\
OAuth: User token + read:statuses
\
Version history:\
2.7.0 - added
:id : {{}} String. The ID of the ScheduledStatus in the database.
Authorization
: {{}} Provide this header with Bearer <user token>
to gain authorized access to this API method.
{
"id": "3221",
"scheduled_at": "2019-12-05T12:33:01.000Z",
"params": {
"poll": null,
"text": "test content",
"media_ids": null,
"sensitive": null,
"visibility": null,
"idempotency": null,
"scheduled_at": null,
"spoiler_text": null,
"application_id": 596551,
"in_reply_to_id": null
},
"media_attachments": []
}
Invalid or missing Authorization header.
{
"error": "The access token is invalid"
}
ScheduledStatus is not owned by you or does not exist
{
"error": "Record not found"
}
PUT /api/v1/scheduled_statuses/:id HTTP/1.1
Returns: ScheduledStatus\
OAuth: User token + write:statuses
\
Version history:\
2.7.0 - added
:id : {{}} String. The ID of the ScheduledStatus in the database.
Authorization
: {{}} Provide this header with Bearer <user token>
to gain authorized access to this API method.
scheduled_at : String. ISO 8601 Datetime at which the status will be published. Must be at least 5 minutes into the future.
{
"id": "3221",
"scheduled_at": "2019-12-05T13:33:01.000Z",
"params": {
"poll": null,
"text": "test content",
"media_ids": null,
"sensitive": null,
"visibility": null,
"idempotency": null,
"scheduled_at": null,
"spoiler_text": null,
"application_id": 596551,
"in_reply_to_id": null
},
"media_attachments": []
}
Invalid or missing Authorization header.
{
"error": "The access token is invalid"
}
ScheduledStatus is not owned by you or does not exist
{
"error": "Record not found"
}
{
"error": "Validation failed: Scheduled at The scheduled date must be in the future"
}
DELETE /api/v1/scheduled_statuses/:id HTTP/1.1
Returns: Empty\
OAuth: User token + write:statuses
\
Version history:\
2.7.0 - added
:id : {{}} String. The ID of the ScheduledStatus in the database.
Authorization
: {{}} Provide this header with Bearer <user token>
to gain authorized access to this API method.
{}
Invalid or missing Authorization header.
{
"error": "The access token is invalid"
}
ScheduledStatus is not owned by you or does not exist
{
"error": "Record not found"
}
{{< page-relref ref="methods/statuses#create" caption="POST /api/v1/statuses (scheduled_at
parameter)" >}}
{{< caption-link url="https://github.com/mastodon/mastodon/blob/main/app/controllers/api/v1/scheduled_statuses_controller.rb" caption="app/controllers/api/v1/scheduled_statuses_controller.rb" >}}