Get details of a specific custom tool by its ID or slug. These are user-defined functions marked as tools.
curl --request GET \
--url https://demo.enneo.ai/api/mind/tools/{identifier} \
--header 'Authorization: Bearer <token>'{
"success": true,
"tool": {
"name": "MyCustomTool",
"id": 1,
"description": "My custom tool that does something",
"parameters": {},
"executor": {}
}
}JWT-based authentication
The identifier of the tool to get, either the numeric ID or the slug
Successful operation
Data format of Enneo success messages
Operation was successful
true
Anzeigen untergeordnete attribute
The name of the tool
"MyCustomTool"
The ID of the tool
1
Description of what the tool does
"My custom tool that does something"
Parameters configuration for the tool
Executor configuration for the tool
curl --request GET \
--url https://demo.enneo.ai/api/mind/tools/{identifier} \
--header 'Authorization: Bearer <token>'{
"success": true,
"tool": {
"name": "MyCustomTool",
"id": 1,
"description": "My custom tool that does something",
"parameters": {},
"executor": {}
}
}