Show examples in:
Javascript HTTP
Endpoint info
Available examples

Content Management API > Upload Collection

Create a new upload collection

Body parameters

id string Optional

RFC 4122 UUID of upload collection expressed in URL-safe base64 format

Example: "uinr2zfqQLeCo_1O0-ao-Q"
label string Required

The label of the upload collection

Example: "Posts"
position integer Optional

Ordering index

Example: 1
parent Optional

Parent 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 uploadCollection = await client.uploadCollections.create({
7
label: "Posts",
8
});
9
10
// Check the 'Returned output' tab for the result ☝️
11
console.log(uploadCollection);
12
}
13
14
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
}