curl --request GET \
--url https://api.threetone.in/v1/voiceai/tools \
--header 'x-api-key: <api-key>'{
"tools": [
{
"id": "<string>",
"created_at_unix_secs": 123,
"tool_config": {
"api_schema": {
"method": "GET",
"path_params_schema": {
"agent_id": {
"type": "string"
}
},
"url": "https://example.com/agents/{agent_id}"
},
"description": "Loads agent details from your CRM.",
"name": "fetch_agent",
"response_timeout_secs": 20,
"type": "webhook"
},
"access_info": {
"is_creator": true,
"creator_name": "<string>",
"creator_email": "<string>",
"role": "admin"
},
"usage_stats": {
"total_calls": 0,
"avg_latency_secs": 123
}
}
]
}Get all tools that are available in the workspace.
curl --request GET \
--url https://api.threetone.in/v1/voiceai/tools \
--header 'x-api-key: <api-key>'{
"tools": [
{
"id": "<string>",
"created_at_unix_secs": 123,
"tool_config": {
"api_schema": {
"method": "GET",
"path_params_schema": {
"agent_id": {
"type": "string"
}
},
"url": "https://example.com/agents/{agent_id}"
},
"description": "Loads agent details from your CRM.",
"name": "fetch_agent",
"response_timeout_secs": 20,
"type": "webhook"
},
"access_info": {
"is_creator": true,
"creator_name": "<string>",
"creator_email": "<string>",
"role": "admin"
},
"usage_stats": {
"total_calls": 0,
"avg_latency_secs": 123
}
}
]
}