Back
Update Post
PUT/posts/{post_id}
Authorization
AuthorizationBearer <token>
API key authentication - use your API key as a Bearer token
In: headerRequest Body
scheduleTime?string (ISO 8601)
New schedule time.
content?string
Updated content.
status?string
Updated status.
Response Body
> 200application/json
// PUT /posts/{post_id}
// See cURL example for request shape.{
"id": "post_123",
"content": "Updated text!",
"status": "scheduled",
"createdAt": "2026-03-25T10:00:00Z",
"updatedAt": "2026-03-25T12:00:00Z",
"platforms": [],
"media": []
}