Sorry, no results found for "".

Show examples in:
Javascript HTTP
Endpoint info
Available examples

Content Management API > Menu Item

Create a new menu item

Body parameters

id string Optional

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

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

The label of the menu item

Example: "Posts"
external_url null, string Optional

The URL to which the menu item points to

position integer Optional

Ordering index

Example: 1
open_in_new_tab boolean Optional

Opens link in new tab (to be used together with external_url)

item_type Optional

Item type associated with the menu item

item_type_filter Optional

Item type filter associated with the menu item (to be used together with item_type relationship)

parent Optional

Parent menu item

Returns

Returns a resource object of type menu_item

Examples

import { buildClient } from "@datocms/cma-client-node";
async function run() {
const client = buildClient({ apiToken: process.env.DATOCMS_API_TOKEN });
const menuItem = await client.menuItems.create({ label: "Posts" });
// Check the 'Returned output' tab for the result ☝️
console.log(menuItem);
}
run();
{
id: "uinr2zfqQLeCo_1O0-ao-Q",
label: "Posts",
position: 1,
external_url: "",
open_in_new_tab: true,
item_type: { type: "item_type", id: "DxMaW10UQiCmZcuuA-IkkA" },
item_type_filter: { type: "item_type_filter", id: "FF-P5of6Qp-DD2w0xoaa6Q" },
parent: null,
children: [{ type: "menu_item", id: "uinr2zfqQLeCo_1O0-ao-Q" }],
}