Schedule a post
Method: POST
URL: https://example.com/<MIXPOST_CORE_PATH>/api/<workspaceUuid>/posts/schedule/{postUuid}
Authorization: Bearer <token>
Body:
{
"postNow": true
}
Key | Format | Required | Description |
---|---|---|---|
postNow | boolean | required | Set to true to schedule the post now. Set to false to schedule the post at the set post time. |
Response:
- 200
- 401
- 403
- 404
- 422
{
"success": true,
"scheduled_at": "2024-05-02 08:49:15",
}
{
"message": "Unauthenticated."
}
{
"message": "Access forbidden."
}
{
"message": "Workspace not found."
}
{
"message": "Post not found."
}
{
"message": "Validation errors",
"errors": {}
}