Skip to main content
POST
/
v1
/
publishing
/
posts
/
{id}
/
schedule
Schedule post
curl --request POST \
  --url https://reelmirror.com/api/v1/publishing/posts/{id}/schedule \
  --header 'Authorization: Bearer <token>' \
  --header 'Content-Type: application/json' \
  --data '
{
  "scheduled_for": "2023-11-07T05:31:56Z",
  "timezone": "UTC"
}
'
{
  "data": {
    "status": "scheduled"
  }
}

Authorizations

Authorization
string
header
required

API key (rm_xxx) or JWT token

Path Parameters

id
string
required

Body

application/json
scheduled_for
string<date-time>
required

ISO 8601 datetime to publish at

timezone
string
default:UTC

IANA timezone name (e.g. America/New_York)

Response

200 - application/json

Post scheduled

data
object