Sorry, no results found for "".
Stage to be moved to
"in_review"
Records to move (a maximum of 200 records are allowed per request)
1import { buildClient } from "@datocms/cma-client-node";2 3async function run() {4 const client = buildClient({ apiToken: process.env.DATOCMS_API_TOKEN });5 6 const item = await client.items.bulkMoveToStage({7 stage: "in_review",8 items: [{ type: "item", id: "hWl-mnkWRYmMCSTq4z_piQ" }],9 });10 11 // Check the 'Returned output' tab for the result ☝️12 console.log(item);13}14 15run();
1[]