Skip to main content
DELETE
/
api
/
tools
/
{id}
curl --request DELETE \
  --url https://api.yourapp.com/api/tools/tool_123 \
  --header 'Authorization: Bearer <token>'
{
  "success": true,
  "message": "Tool deleted successfully"
}

Path Parameters

id
string
required
Tool ID to delete

Response

success
boolean
Indicates if the operation was successful
message
string
Response message
curl --request DELETE \
  --url https://api.yourapp.com/api/tools/tool_123 \
  --header 'Authorization: Bearer <token>'
{
  "success": true,
  "message": "Tool deleted successfully"
}