Get tool parameters schema
Return the JSON schema describing the parameters accepted by
runTool for this tool.
The schema is a list of parameter specs (id, type, description,
required, and an optional default). The exact list depends on the
tool’s tool_type and configuration — for example a retrieval tool
configured with auto_include tags exposes an extra included_tags
parameter.
Use the id of each entry as the key in the JSON body sent to
runTool.
Authorizations
Use Authorization: Bearer
Path Parameters
UUID of the project
UUID of the tool
Response
JSON schema describing the tool's run parameters
Parameter name (used as the JSON key when calling runTool).
JSON type of the parameter value.
string, integer, number, boolean, array, object Human-readable description of the parameter.
Whether the parameter must be supplied when running the tool.
Default value when the parameter is omitted. Type matches type.