Layers
Partner APIAPI reference

Publishing

Publish a content container immediately or schedule it for a future time, then track the resulting posts.

View as Markdown

Two write endpoints kick off a publish: POST /v1/content/:containerId/publish sends now, POST /v1/content/:containerId/schedule queues it for a scheduledFor timestamp. Both create the same sp_<uuid> post records — publish-now rows just have scheduledFor equal to the moment they were issued. Everything after that (get, list, reschedule, cancel) acts on those post records regardless of which endpoint created them.

If this is your first publish, start with publish-content — fewer fields to get right, immediate feedback. Layer in schedule-content when you need to queue posts ahead of time.

In this section

On this page