Skip to main content
DELETE
/
api
/
v1
/
menus
/
:id.json
Delete Menu
curl --request DELETE \
  --url https://api.launchmystore.io/api/v1/menus/:id.json \
  --header 'Authorization: Bearer <token>'
{
  "success": true,
  "data": {
    "id": "<string>",
    "deleted": true
  }
}

Documentation Index

Fetch the complete documentation index at: https://docs.launchmystore.io/llms.txt

Use this file to discover all available pages before exploring further.

Delete Menu

Permanently deletes a navigation menu and all its links. This action cannot be undone.

Request

curl -X DELETE "https://api.launchmystore.io/api/v1/menus/menu_abc123.json" \
  -H "Authorization: Bearer YOUR_ACCESS_TOKEN"

Path Parameters

id
string
required
The unique menu ID to delete

Response

success
boolean
Whether the request succeeded
data
object
Confirmation object

Example Response

{
  "success": true,
  "data": {
    "id": "menu_abc123",
    "deleted": true
  }
}

Notes

  • All links within the menu will be deleted
  • Theme templates referencing this menu by handle will show empty navigation
  • Common menus like main-menu and footer are often required by themes - deleting them may cause display issues

Error Codes

CodeDescription
UNAUTHORIZEDInvalid or missing access token
FORBIDDENApp doesn’t have write_content scope
NOT_FOUNDMenu with the specified ID does not exist