Delete Custom Tool
DELETE
/api/v3/organizations/{organisation}/ai/custom-tools/{toolName}
const url = 'https://dashboard.quantcdn.io/api/v3/organizations/example/ai/custom-tools/example';const options = {method: 'DELETE', headers: {Authorization: 'Bearer <token>'}};
try { const response = await fetch(url, options); const data = await response.json(); console.log(data);} catch (error) { console.error(error);}curl --request DELETE \ --url https://dashboard.quantcdn.io/api/v3/organizations/example/ai/custom-tools/example \ --header 'Authorization: Bearer <token>'Deletes a custom tool registration and its deployed edge function.
Authorizations
Section titled “Authorizations”Parameters
Section titled “Parameters”Path Parameters
Section titled “Path Parameters”organisation
required
string
The organisation ID
toolName
required
string
The tool name to delete
Responses
Section titled “Responses”Custom tool deleted successfully
Media typeapplication/json
object
success
boolean
message
string
Example
{ "success": true, "message": "Custom tool deleted successfully"}Access denied
Tool not found
Failed to delete custom tool
