Create Tool
Tools
Create Tool
Create a new tool that agents can use during calls.
POST
Create Tool
Authorizations
API key authentication. Include your API key in the Authorization header: Bearer <your_api_key>
Body
application/json
Display name for the tool
Required string length:
1 - 255Example:
"Weather API Tool"
Tool definition (HTTP config, parameters, authentication)
Example:
{
"type": "http",
"method": "GET",
"base_url": "https://api.weather.com/forecast",
"parameters": [
{
"name": "location",
"type": "string",
"required": true,
"description": "City name"
}
]
}
