The tag name
import { buildClient } from '@datocms/cma-client-node';async function run() {const client = buildClient({ apiToken: '<YOUR_API_TOKEN>' });const uploadTag = await client.uploadTags.create({name: 'Pictures of me'});console.log(uploadTag);}run();
{id: '42',name: 'Pictures of me'}