Skip to content

Tools

Operations for the Tools service collection.

LanguageLast Update
Pythonv1.6.5
PowerShell
Go
TypeScript
Rust
Ruby

OperationDescription
EntitiesToolsV1
entities_tools_v1
Retrieve tools entities for the provided id.
QueriesToolsV1
queries_tools_v1
Query tools based on the provided filters.

Retrieve tools entities for the provided id.

Method GET
Route /agentic-studio/entities/tools/v1
Scope Charlotte AI Agent Definition: READ
PEP 8 entities_tools_v1
ids query · string or list of strings
IDs of entities to retrieve.
parameters query · dictionary
Full query string parameters payload in JSON format. Not required when using other keywords.
from falconpy import Tools
falcon = Tools(client_id=CLIENT_ID,
client_secret=CLIENT_SECRET
)
id_list = 'ID1,ID2,ID3' # Can also pass a list here: ['ID1', 'ID2', 'ID3']
response = falcon.entities_tools_v1(ids=id_list)
print(response)
[
{
"category": "string",
"description": "string",
"extended_input_schema": "string",
"id": "string",
"input_schema": {},
"is_deleted": false,
"is_enabled": false,
"meta": {},
"name": "string",
"output_schema": {},
"tags": [],
"title": "string",
"type": "string"
}
]


Query tools based on the provided filters.

Method GET
Route /agentic-studio/queries/tools/v1
Scope Charlotte AI Agent Definition: READ
PEP 8 queries_tools_v1
offset query · integer
Starting index of overall result set from which to return ids.
limit query · integer
Number of IDs to return. Offset + limit should NOT be above 10K.
sort query · string
Possible order by fields:
Available values (4)
idnamedescription
category
filter query · string
FQL query specifying the filter parameters.
parameters query · dictionary
Full query string parameters payload in JSON format. Not required when using other keywords.
from falconpy import Tools
falcon = Tools(client_id=CLIENT_ID,
client_secret=CLIENT_SECRET
)
response = falcon.queries_tools_v1(offset=integer,
limit=integer,
sort="string",
filter="string")
print(response)
[
"string"
]