Skip to main content
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}

Autorización

Authorization
string
required
Bearer token generado desde el portal Leadway. Ver Autenticación.
Version
string
default:"2021-07-28"
required
Versión 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'
const response = await fetch('https://services.leadconnectorhq.com/custom-menus/YOUR_customMenuId', {
  method: 'DELETE',
  headers: {
    Authorization: `Bearer ${process.env.LEADWAY_TOKEN}`,
    Version: '2021-07-28',
  },
});
const data = await response.json();
import os, requests
response = requests.request(
    'DELETE',
    'https://services.leadconnectorhq.com/custom-menus/YOUR_customMenuId',
    headers={
        'Authorization': f"Bearer {os.environ['LEADWAY_TOKEN']}",
        'Version': '2021-07-28',
    },
)
data = response.json()
<?php
$ch = curl_init('https://services.leadconnectorhq.com/custom-menus/YOUR_customMenuId');
curl_setopt_array($ch, [
    CURLOPT_RETURNTRANSFER => true,
    CURLOPT_CUSTOMREQUEST => 'DELETE',
    CURLOPT_HTTPHEADER => [
        'Authorization: Bearer ' . getenv('LEADWAY_TOKEN'),
        'Version: 2021-07-28',
    ],
]);
$data = json_decode(curl_exec($ch), true);