PATCH
/posts/:idUpdate Post
Update a draft or scheduled post. Cannot update published posts.
Path Parameters
| Name | Type | Description |
|---|---|---|
| id* | string | Post ID |
Body Parameters
| Name | Type | Description |
|---|---|---|
| text | string | Updated post content |
| schedule | string | New schedule date (ISO 8601). Set to null to convert to draft. |
| platformContent | object | Updated per-platform content |
| isThread | boolean | Toggle thread mode |
| media | object | Updated media attachments |
Request Body Example
{
"text": "Updated post content",
"schedule": "2025-03-16T10:00:00Z"
}Response
200{
"success": true,
"data": {
"id": "post_abc123",
"text": "Updated post content",
"status": "scheduled",
"schedule": "2025-03-16T10:00:00Z",
"updatedAt": "2025-03-11T08:00:00Z"
}
}