The future date for the unpublishing
List of locales whose content will be unpublished, or nil if the whole record needs to be unpublished
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',content_in_locales: ['']});console.log(scheduledUnpublishing);}run();
{id: '34',unpublishing_scheduled_at: '2025-02-10T11:03:42Z',content_in_locales: [''],item: {type: 'item',id: 'hWl-mnkWRYmMCSTq4z_piQ'}}