Skip to main content
PUT
/
v1
/
bot
/
tool
/
{id}
/
configure
Configure Tool Settings
curl --request PUT \
  --url https://api.boostgpt.co/v1/bot/tool/{id}/configure \
  --header 'Authorization: Bearer <token>' \
  --header 'Content-Type: application/json' \
  --data '
{
  "project_id": "<string>",
  "bot_id": "<string>",
  "tools": [
    {
      "name": "<string>",
      "is_active": true
    }
  ]
}
'
{
  "success": true,
  "message": "<string>"
}

Authorizations

Authorization
string
header
required

Enter your API key

Path Parameters

id
string<uuid>
required

Tool ID

Body

application/json
project_id
string
required

Project ID

bot_id
string
required

Agent ID

tools
object[]
required

Array of tool configurations

Response

200 - application/json

Tools configured successfully

success
boolean

Operation success status

message
string

Success message