Sorry, no results found for "".
The tags to add to the assets
["cats"]
Assets to tag
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.bulkTag({7 tags: ["cats"],8 uploads: [{ type: "upload", id: "q0VNpiNQSkG6z0lif_O1zg" }],9 });10 11 // Check the 'Returned output' tab for the result ☝️12 console.log(upload);13}14 15run();
1[]