Show examples in:
Create a new scheduled unpublishing

Body Parameters

unpublishing_scheduled_at  Required  date-time  Example: "2025-02-10T11:03:42Z"

The future date for the unpublishing

content_in_locales  Optional  null, Array<string>

List of locales whose content will be unpublished, or nil if the whole record needs to be unpublished

Returns

Returns a scheduled_unpublishing resource object.

Examples

Example Basic example
import { buildClient } from '@datocms/cma-client-node';
async function run() {
const client = buildClient({ apiToken: '<YOUR_API_TOKEN>' });
const itemId = '34';
const scheduledUnpublishing = await client.scheduledUnpublishing.create(itemId, {
unpublishing_scheduled_at: '2025-02-10T11:03:42Z'
});
console.log(scheduledUnpublishing);
}
run();