Show examples in:
Javascript HTTP
Endpoint info
Available examples

Content Management API > Menu Item

List all menu items

Query parameters

filter object
ids string

IDs to fetch, comma separated

Example: "42,554"

Returns

Returns an array of resource objects of type 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 menuItems = await client.menuItems.list();
7
8
for (const menuItem of menuItems) {
9
// Check the 'Returned output' tab for the result ☝️
10
console.log(menuItem);
11
}
12
}
13
14
run();
1
{
2
id: "uinr2zfqQLeCo_1O0-ao-Q",
3
label: "Posts",
4
position: 1,
5
external_url: "",
6
open_in_new_tab: true,
7
item_type: { type: "item_type", id: "DxMaW10UQiCmZcuuA-IkkA" },
8
item_type_filter: { type: "item_type_filter", id: "FF-P5of6Qp-DD2w0xoaa6Q" },
9
parent: null,
10
children: [{ type: "menu_item", id: "uinr2zfqQLeCo_1O0-ao-Q" }],
11
}