Skip to main content
PUT
/
tools
/
{org_id}
/
{tool_id}
Update Tool
curl --request PUT \
  --url https://api.example.com/tools/{org_id}/{tool_id} \
  --header 'Authorization: Bearer <token>' \
  --header 'Content-Type: application/json' \
  --data '
{
  "name": "<string>",
  "description": "<string>",
  "tags": [
    "<string>"
  ]
}
'
{}

Authorizations

Authorization
string
header
required

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

Path Parameters

org_id
string
required
tool_id
string
required

Body

application/json
name
string | null
required
description
string | null
required
tags
string[] | null
required

Response

Successful Response

The response is of type Response Update Tool Tools Org Id Tool Id Put · object.