Show examples in:
Javascript HTTP
Endpoint info
Available examples

Content Management API > Upload Collection

Retrieve a upload collection

Returns

Returns a resource object of type upload_collection

Examples

1
import { buildClient } from "@datocms/cma-client-node";
2
3
async function run() {
4
const client = buildClient({ apiToken: process.env.DATOCMS_API_TOKEN });
5
6
const uploadCollectionId = "uinr2zfqQLeCo_1O0-ao-Q";
7
8
const uploadCollection =
9
await client.uploadCollections.find(uploadCollectionId);
10
11
// Check the 'Returned output' tab for the result ☝️
12
console.log(uploadCollection);
13
}
14
15
run();
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
}