Skip to main content
PUT
/
v2
/
tools
/
{toolId}
Update Tool
curl --request PUT \
  --url http://localhost:3000/api/v2/tools/{toolId} \
  --header 'Authorization: Bearer <token>' \
  --header 'Content-Type: application/json' \
  --data '{
  "name": "<string>",
  "description": "<string>",
  "serverUrl": "<string>",
  "serverUrlSecret": "<string>",
  "disabled": true
}'
This response does not have an example.

Authorizations

Authorization
string
header
required

Bearer authentication header of the form Bearer <token>, where <token> is your auth token.

Path Parameters

toolId
string
required

Body

application/json
name
string
description
string
serverUrl
string
serverUrlSecret
string
disabled
boolean

Response

Tool updated successfully

I