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>"
}Configure multiple tool settings at once (bulk toggle)
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>"
}Enter your API key
Tool ID
Was this page helpful?