Path parameters

idstringrequired

The ID of the menu to remove.

Response

idstring

The unique identifier for this menu.

objectstring

This will always contain menu for this endpoint.

deletedboolean

Determine if the object was successfully deleted.

import Blutui from 'blutui'

const blutui = new Blutui('ey....')

blutui.project('one').admin.menus.remove('9a5b0b29-a4f8-4df6-bf53-f282af312686')
Response
{
  "id": "9a5b0b29-a4f8-4df6-bf53-f282af312686",
  "object": "menu",
  "deleted": true
}

Was this helpful?