The label of the upload collection
"Posts"
Ordering index
1
Parent upload collection
Underlying upload collections
Returns a resource object of type upload_collection
1import { buildClient } from "@datocms/cma-client-node";2 3async function run() {4 const client = buildClient({ apiToken: process.env.DATOCMS_API_TOKEN });5 6 const uploadCollectionId = "uinr2zfqQLeCo_1O0-ao-Q";7 8 const uploadCollection = await client.uploadCollections.update(9 uploadCollectionId,10 { id: "uinr2zfqQLeCo_1O0-ao-Q" },11 );12 13 // Check the 'Returned output' tab for the result ☝️14 console.log(uploadCollection);15}16 17run();
1{2 id: "uinr2zfqQLeCo_1O0-ao-Q",3 label: "Posts",4 position: 1,5 parent: null,6 children: [{ type: "upload_collection", id: "uinr2zfqQLeCo_1O0-ao-Q" }],7}