The label of the upload collection
Ordering index
Parent upload collection
Underlying upload collections
import { buildClient } from '@datocms/cma-client-node';async function run() {const client = buildClient({ apiToken: '<YOUR_API_TOKEN>' });const uploadCollectionId = 'uinr2zfqQLeCo_1O0-ao-Q';const uploadCollection = await client.uploadCollections.update(uploadCollectionId, {});console.log(uploadCollection);}run();