Show examples in:
Javascript HTTP
Endpoint info
Available examples

Content Management API > Schema Menu Item

Create a new schema menu item

Body parameters

id string Optional

RFC 4122 UUID of schema menu item expressed in URL-safe base64 format

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

The label of the schema menu item (only present when the schema menu item is not linked to an item type)

Example: "Posts"
kind enum Required

Indicates if the schema menu item refers to an item type or a modular block

Example: "item_type"
item_type Optional
modular_block Optional
position integer Optional

Ordering index

Example: 1
item_type Optional

Item type associated with the menu item

parent Optional

Parent schema menu item

Returns

Returns a resource object of type schema_menu_item

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 schemaMenuItem = await client.schemaMenuItems.create({
7
label: "Posts",
8
kind: "item_type",
9
});
10
11
// Check the 'Returned output' tab for the result ☝️
12
console.log(schemaMenuItem);
13
}
14
15
run();
1
{
2
id: "uinr2zfqQLeCo_1O0-ao-Q",
3
label: "Posts",
4
position: 1,
5
kind: "item_type",
6
item_type: { type: "item_type", id: "DxMaW10UQiCmZcuuA-IkkA" },
7
parent: null,
8
children: [{ type: "schema_menu_item", id: "uinr2zfqQLeCo_1O0-ao-Q" }],
9
}