The label of the menu item
The URL to which the menu item points to
Ordering index
Opens link in new tab (to be used together with external_url
)
Item type associated with the menu item
Item type filter associated with the menu item (to be used together with item_type
relationship)
Parent menu item
import { buildClient } from '@datocms/cma-client-node';async function run() {const client = buildClient({ apiToken: '<YOUR_API_TOKEN>' });const menuItemId = 'uinr2zfqQLeCo_1O0-ao-Q';const menuItem = await client.menuItems.update(menuItemId, {});console.log(menuItem);}run();