Skip to main content
PATCH
/
posts
/
{id}
Update a post
curl --request PATCH \
  --url https://api.cut.pro/api/v1/posts/{id} \
  --header 'Content-Type: application/json' \
  --header 'X-Api-Key: <api-key>' \
  --data '
{
  "scheduled_at": "<string>",
  "items": [
    {
      "edit_id": "<string>",
      "connection_id": "<string>",
      "metadata": {},
      "item_id": "<string>"
    }
  ]
}
'
{
  "id": "<string>",
  "scheduled_at": "<string>",
  "created_at": "<string>",
  "updated_at": "<string>",
  "item_count": 123,
  "items": [
    {
      "id": "<string>",
      "connection_id": "<string>",
      "edit_id": "<string>",
      "render_id": "<string>",
      "published_url": "<string>",
      "error_code": "<string>",
      "created_at": "<string>",
      "updated_at": "<string>",
      "posted_at": "<string>"
    }
  ]
}

Documentation Index

Fetch the complete documentation index at: https://cut.pro/docs/llms.txt

Use this file to discover all available pages before exploring further.

Authorizations

X-Api-Key
string
header
required

Path Parameters

id
string
required

Body

scheduled_at
string | null

ISO 8601 future timestamp, or null to clear the schedule and publish immediately.

items
object[]
Minimum array length: 1

Response

Response for status 200

id
string
required
status
enum<string>
required
Available options:
pending,
processing,
completed,
partial,
failed
scheduled_at
string | null
required
created_at
string
required
updated_at
string
required
item_count
number
required
items
object[]
required
Last modified on May 27, 2026