Skip to main content
PUT
/
api
/
v1
/
tool
/
{tool_id}
Update Tool By Id
curl --request PUT \
  --url 'https://api.example.com/api/v1/tool/{tool_id}?api_key=' \
  --header 'Content-Type: application/json' \
  --data '
{
  "name": "<string>",
  "description": "<string>",
  "org_id": "3c90c3cc-0d44-4b50-8888-8dd25736052a",
  "tool_type": "system",
  "authentication": {},
  "sdk": {},
  "base_url": "<string>",
  "logo_url": "<string>",
  "tool_provider": "leadconnector",
  "enabled": true,
  "attributes": {},
  "category": "Calendar"
}
'
{
  "message": "Data updated successfully",
  "meta": {},
  "data": {
    "name": "<string>",
    "description": "<string>",
    "org_id": "3c90c3cc-0d44-4b50-8888-8dd25736052a",
    "tool_type": "system",
    "authentication": {},
    "sdk": {},
    "base_url": "<string>",
    "logo_url": "<string>",
    "tool_provider": "leadconnector",
    "enabled": true,
    "attributes": {},
    "category": "Calendar"
  }
}

Authorizations

api_key
string
query
required

Your API key for authentication. You can generate it from the Settings page. Format: starts with in-.

Path Parameters

tool_id
string<uuid>
required

Body

application/json
name
string | null
description
string | null
org_id
string<uuid> | null
tool_type
enum<string> | null
Available options:
system,
user
authentication
Authentication · object
sdk
Sdk · object
base_url
string | null
logo_url
string | null
tool_provider
enum<string> | null
Available options:
leadconnector,
hubspot,
google_calendar,
zoho,
freshdesk,
insighto,
modmed,
twilio,
custom,
fb_messenger,
instagram,
paypal,
postgres,
plivo,
telnyx,
telegram
enabled
boolean | null
attributes
Attributes · object
category
enum<string> | null
Available options:
Calendar,
CRM,
EHR,
Support,
Communication,
System,
HRMS,
Social,
Others,
Payment,
Database,
MCP

Response

Successful Response

message
string | null
default:Data updated successfully
meta
Meta · object
data
IToolUpdate · object