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": {}
  }
}

Autorisierungen

Authorization
string
header
erforderlich

JWT-based authentication

Pfadparameter

identifier
erforderlich

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

Antwort

Successful operation

Data format of Enneo success messages

success
boolean

Operation was successful

Beispiel:

true

tool
object