Sorry, no results found for "".
The tag name
"Pictures of me"
Returns a resource object of type upload_tag
import { buildClient } from "@datocms/cma-client-node";
async function run() { const client = buildClient({ apiToken: process.env.DATOCMS_API_TOKEN });
const uploadTag = await client.uploadTags.create({ name: "Pictures of me" });
// Check the 'Returned output' tab for the result ☝️ console.log(uploadTag);}
run();
{ id: "42", name: "Pictures of me" }