Sorry, no results found for "".

Show examples in:
Javascript HTTP
Endpoint info
Available examples

Content Management API > Scheduled publication

Create a new scheduled publication

Body parameters

type string Required

Must be exactly "scheduled_publication".

attributes.publication_scheduled_at date-time Required

The future date for the publication

Example: "2025-02-10T11:03:42Z"
attributes.selective_publication null, object Optional

Specifies which content should be published. If null, the whole record will be published.

content_in_locales Required

List of locales whose content will be published

Type: Array<string>
non_localized_content boolean Required

Whether the non-localized content has to be published or not

Returns

Returns a resource object of type scheduled_publication.

Examples

POST https://site-api.datocms.com/items/:item_id/scheduled-publication HTTP/1.1
Authorization: Bearer YOUR-API-TOKEN
Accept: application/json
X-Api-Version: 3
Content-Type: application/vnd.api+json
{
"data": {
"type": "scheduled_publication",
"attributes": {
"publication_scheduled_at": "2025-02-10T11:03:42Z"
}
}
}