Skip to main content

Documentation Index

Fetch the complete documentation index at: https://developers.leadwaycrm.com/llms.txt

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

Removes a specific custom menu from the system. This operation requires authentication and proper permissions. The custom menu is identified by its unique ID, and the operation is performed within the context of a specific company.
DELETE https://services.leadconnectorhq.com/custom-menus/{customMenuId}

Autorizacion

Authorization
string
required
Bearer token generado desde el portal Leadway. Ver Autenticacion.
Version
string
default:"2021-07-28"
required
Version de la API.

Path parameters

customMenuId
string
default:"62e589c1-c456-47e1-a9a7-cb8900014311"
required
ID of the custom menu to delete

Respuestas

success
boolean
default:"True"
Indicates whether the custom menu was successfully deleted
message
string
default:"Custom menu successfully deleted"
A message providing additional information about the deletion operation
deletedMenuId
string
default:"12345abcde"
The ID of the deleted custom menu
deletedAt
string
default:"2023-09-12T15:30:45.123Z"
Timestamp of when the deletion was performed
{
  "success": true,
  "message": "Custom menu successfully deleted",
  "deletedMenuId": "12345abcde",
  "deletedAt": "2023-09-12T15:30:45.123Z"
}
{}
{}

Ejemplo

curl -X DELETE 'https://services.leadconnectorhq.com/custom-menus/YOUR_customMenuId' \
  -H 'Authorization: Bearer YOUR_TOKEN' \
  -H 'Version: 2021-07-28'