Sorry, no results found for "".
The tag name
"Pictures of me"
Returns a resource object of type upload_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 uploadTag = await client.uploadTags.create({ name: "Pictures of me" });7 8 // Check the 'Returned output' tab for the result ☝️9 console.log(uploadTag);10}11 12run();
1{ id: "42", name: "Pictures of me" }