Skip to main content
PUT
/
posts
/
{postId}
/
schedule
Schedule a post
curl --request PUT \
  --url https://app.autoposting.ai/api-proxy/posts/{postId}/schedule \
  --header 'Authorization: Bearer <token>' \
  --header 'Content-Type: application/json' \
  --data '
{
  "scheduledAt": "2025-02-01T10:00:00Z"
}
'
{
  "success": true,
  "data": {
    "id": "post_01HXYZ",
    "status": "scheduled",
    "scheduledAt": "2025-02-01T10:00:00Z"
  }
}

Authorizations

Authorization
string
header
required

API key as Authorization: Bearer sk-social-...

Path Parameters

postId
string
required

Unique identifier of the post.

Example:

"post_01HXYZ"

Body

application/json
scheduledAt
string<date-time>
required

ISO 8601 datetime to schedule the post.

Example:

"2025-02-01T10:00:00Z"

Response

The scheduled post.

success
boolean
required
data
object
required