Sorry, no results found for "".

Show examples in:
Javascript HTTP
Endpoint info
Available examples

Content Management API > Upload Collection

List all upload collections

Query parameters

filter object
ids string

IDs to fetch, comma separated

Example: "42,554"

Returns

Returns an array of resource objects of type upload_collection

Examples

import { buildClient } from "@datocms/cma-client-node";
async function run() {
const client = buildClient({ apiToken: process.env.DATOCMS_API_TOKEN });
const uploadCollections = await client.uploadCollections.list();
for (const uploadCollection of uploadCollections) {
// Check the 'Returned output' tab for the result ☝️
console.log(uploadCollection);
}
}
run();
{
id: "uinr2zfqQLeCo_1O0-ao-Q",
label: "Posts",
position: 1,
parent: null,
children: [{ type: "upload_collection", id: "uinr2zfqQLeCo_1O0-ao-Q" }],
}