Zum Hauptinhalt springen
GET
/
tools
/
{identifier}
Get a specific custom 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": {}
  }
}

Authorizations

Authorization
string
header
required

JWT-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