List Insight Tool Configurations
List the existing insight_tools
/api/v1/insights/tool-configurationsAuthentication
Syllable-API-KeyrequiredSend Syllable-API-Key in the header.
Need a credential? Create or manage an API token in the Syllable Console.
Parameters
Query parameters
page
integer | null
query
optional
The page number from which to start (0-based)
0Minimum 0Example 0limit
integer
query
optional
The maximum number of items to return
25Minimum 0Example 25search_fields
enum<string>[]
query
optional
String names of fields to search. Correspond by index to search field values
[]Example nameItem schema
itemsenum<string>required["id","name","name_exact","description","tool_arguments","insight_tool_definition_id","updated_at"]search_field_values
string[]
query
optional
Values of fields to search. Correspond by index to search fields. Unless field name contains "list", an individual search field value cannot be a list
[]Example Some Object NameItem schema
itemsstringrequiredorder_by
enum<string> | null
query
optional
The field whose value should be used to order the results
["id","name","name_exact","description","tool_arguments","insight_tool_definition_id","updated_at"]Example nameorder_by_direction
enum<string> | null
query
optional
The direction in which to order the results
["asc","desc"]fields
enum<string>[] | null
query
optional
The fields to include in the response
[]Example []Item schema
itemsenum<string>required["id","name","name_exact","description","tool_arguments","insight_tool_definition_id","updated_at"]start_datetime
string | null
query
optional
The start datetime for filtering results
2023-01-01T00:00:00Zend_datetime
string | null
query
optional
The end datetime for filtering results
2024-01-01T00:00:00ZResponses
200Successful Response
application/json
response
ListResponse_InsightToolResponse_
required
5 fields
itemsInsightToolResponse[]requiredList of items returned from the query
Item schema
itemsInsightToolResponserequiredResponse model for insight tool saves, carrying any non-blocking findings.
11 fields
namestringrequiredHuman readable name of insight tool
descriptionstringrequiredText description of insight tool configuration
versionintegerrequiredVersion of insight tool
tool_argumentsunspecifiedrequiredArguments for calling the insight tool
insight_tool_definition_idintegerrequiredUnique ID for insight tool definition used by this tool configuration
idintegerrequiredUnique ID for insight tool
insight_tool_definitionInsightToolDefinition | nulloptionalInsight Tool Definition
6 options
idintegerrequiredUnique ID for insight tool definition
namestringrequiredHuman-readable name of insight tool definition
typestringrequiredType of insight tool definition
descriptionstringrequiredText description of insight tool definition
tool_parametersunspecifiedrequiredParameters for tools that use this definition and their associated types
tool_result_setunspecifiedrequiredResult key/types for insight tool definition
created_atstring (date-time)optionalTimestamp of at which insight tool configuration was created
updated_atstring (date-time)optionalTimestamp at which insight tool configuration was last updated
last_updated_bystringrequiredEmail of user who last updated insight tool configuration
validation_issuesValidationIssue[] | nulloptionalNon-blocking findings for the saved insight tool (e.g. a deprecated model warning). Warnings and infos are informational; errors block the save.
Item schema
itemsValidationIssuerequiredA single validation finding with severity, location, and description.
5 fields
idstringrequiredStable machine-readable identifier (kebab-case)
severityenum<string>optional["info","warning","error"]Default errormessagestringrequiredHuman-readable description
pathstring | nulloptionalJSONPath-style location (e.g. $.context.task.steps[2])
valuestring | nulloptionalThe offending value, when it adds clarity
pageintegerrequiredThe page number of the results (0-based)
page_sizeintegerrequiredThe number of items returned per page
total_pagesinteger | nulloptionalThe total number of pages of results given the indicated page size
total_countinteger | nulloptionalThe total number of items returned from the query
Response example
{
"items": [
{
"name": "string",
"description": "string",
"version": 0,
"tool_arguments": "string",
"insight_tool_definition_id": 0,
"id": 0,
"insight_tool_definition": "string",
"created_at": "string",
"updated_at": "string",
"last_updated_by": "string",
"validation_issues": "string"
}
],
"page": 0,
"page_size": 0,
"total_pages": "string",
"total_count": "string"
}422Validation Error
application/json
response
HTTPValidationError
required
1 field
detailValidationError[]optionalItem schema
itemsValidationErrorrequired3 fields
locstring | integer[]requiredItem schema
itemsstring | integerrequired2 options
Option 1stringrequiredOption 2integerrequiredmsgstringrequiredtypestringrequiredResponse example
{
"detail": [
{
"loc": [
"string"
],
"msg": "string",
"type": "string"
}
]
}
