GET
/
tools
/
{identifier}
Get a specific custom tool
curl --request GET \
  --url https://demo.enneo.ai/api/mind/tools/{identifier}
{
  "success": true,
  "tool": {
    "name": "MyCustomTool",
    "id": 1,
    "description": "My custom tool that does something",
    "parameters": {},
    "executor": {}
  }
}

Authorizations

connect.sid
string
cookie
required

Cookie-based authentication

Path Parameters

identifier
required

The identifier of the tool to get, either the numeric ID or the slug

Response

Successful operation

Data format of Enneo success messages

success
boolean

Operation was successful

Example:

true

tool
object