Cancel a queued post
POST
/posts/{id}/cancel
const url = 'https://api.dropslate.top/v1/posts/example/cancel';const options = {method: 'POST', headers: {Authorization: 'Bearer <token>'}};
try { const response = await fetch(url, options); const data = await response.json(); console.log(data);} catch (error) { console.error(error);}curl --request POST \ --url https://api.dropslate.top/v1/posts/example/cancel \ --header 'Authorization: Bearer <token>'queued -> draft. Requires write.
Authorizations
Section titled “Authorizations”Parameters
Section titled “ Parameters ”Path Parameters
Section titled “Path Parameters”id
required
string
Responses
Section titled “ Responses ”The post, now a draft.
Media typeapplication/json
object
id
string
accountId
string
platform
string
mediaIds
Array<string>
text
string
title
string
tags
Array<string>
publishAt
string format: date-time
tz
string
status
string
externalId
string
externalUrl
string
error
object
code
string
message
string
hint
string
attempts
integer
createdVia
string
createdAt
string format: date-time
updatedAt
string format: date-time
statusLine
The post in one sentence, the same one the dashboard and an MCP agent show.
string
Example
{ "tz": "Europe/Kiev", "status": "draft", "createdVia": "ui", "statusLine": "Queued. YouTube · What We Made · 12 Sep, 18:00 (Kyiv)."}The key is missing the “write” scope, or this route needs a signed-in session instead of a key.
Media typeapplication/json
object
code
required
string
message
required
string
hint
string
Example
{ "code": "not_found", "message": "The post does not exist.", "hint": "Check the id and try again."}Does not exist, or belongs to a different workspace - the two look identical from here.
Media typeapplication/json
object
code
required
string
message
required
string
hint
string
Example
{ "code": "not_found", "message": "The post does not exist.", "hint": "Check the id and try again."}