tools.connections.update
ERP-Verbindung aktualisieren
Hilfe
Aktualisiert eine bestehende ERP-Verbindung. Bei maskierten Passwörtern (********) wird das bestehende Passwort beibehalten.
Parameter
| Name | Typ | Required | Default | Beschreibung |
|---|---|---|---|---|
connection_id |
string | Ja | — | ID der Verbindung (z.B. conn-a1b2c3d4) |
name |
string | Ja | — | Name der Verbindung |
type |
string | Ja | — | Konnektor-Typ |
config |
object | Nein | {} | Verbindungskonfiguration |
enabled |
boolean | Nein | True | Verbindung aktiv |
Rueckgabe
Bestätigung der Aktualisierung
Beispiel-Prompts
- Aktualisiere Verbindung conn-a1b2c3d4
- Ändere den Namen der Verbindung
Confirmation
Diese Funktion erfordert eine Bestaetigung vor der Ausfuehrung.
Template: verbindung {connection_id} aktualisieren
Changelog
Area: connections | Action: update
HTTP-Request (curl)
curl -X PUT 'http://HOST:8502/api/admin/tools/connections/{connection_id}' \
-H 'Cookie: kiara_admin_session=SESSION' \
-H 'X-Requested-With: XMLHttpRequest' \
-H 'Content-Type: application/json' \
-d '{
"connection_id": "...",
"name": "...",
"type": "...",
"config": "...",
"enabled": "..."
}'