Agent-readable docs index: /llms.txt. Full docs in one file: /llms-full.txt. Download /docs.zip to grep all markdown files locally.
/api/v2/posts/scheduled/{postId}PATCH
Moves a scheduled post to a new publish time.
Authorization
apiKey *Bearer <token>
Akarso API key from the dashboard. Token in: header
Path Parameters
postId *string
Scheduled post ID
Request Bodyapplication/jsonrequired
scheduledFor *string
New ISO 8601 datetime to schedule the post
timezone?string
IANA timezone for the new time
Response
200
success *boolean
message?string
scheduledFor?string
400 · Invalid request body, path, or query parameters
error *string
Human-readable error message
code?string
Machine-readable error code
message?string
Additional error details
401 · Missing or invalid API key
error *string
Human-readable error message
code?string
Machine-readable error code
message?string
Additional error details
404 · Resource not found
error *string
Human-readable error message
code?string
Machine-readable error code
message?string
Additional error details
409 · Post is not in a reschedulable state
error *string
Human-readable error message
code?string
Machine-readable error code
message?string
Additional error details
429 · Upstream rate limit reached
error *string
Human-readable error message
code?string
Machine-readable error code
message?string
Additional error details
502 · Upstream platform request failed
error *string
Human-readable error message
code?string
Machine-readable error code
message?string
Additional error details
503 · Upstream service temporarily unavailable or submission outcome unknown
error *string
Human-readable error message
code?string
Machine-readable error code
message?string
Additional error details
Request example
curl -X PATCH "https://akarso.co/api/v2/posts/scheduled/<postId>" \ -H "Authorization: Bearer <token>" \ -H "Content-Type: application/json" \ -d '{ "scheduledFor": "string", "timezone": "string" }'