Sorry, no results found for "".
Delete assets in bulk
Assets to delete
1import { buildClient } from "@datocms/cma-client-node";2 3async function run() {4 const client = buildClient({ apiToken: process.env.DATOCMS_API_TOKEN });5 6 const upload = await client.uploads.bulkDestroy({7 uploads: [{ type: "upload", id: "q0VNpiNQSkG6z0lif_O1zg" }],8 });9 10 // Check the 'Returned output' tab for the result ☝️11 console.log(upload);12}13 14run();
1[]