Wallbox Scan Log SELECT
Liest die letzten RFID- bzw. Schluessel-Scans einer Wallbox.
Tool-Name
tool
select_wallbox_scan_log
Parameter
| Parameter | Typ | Pflicht | Beschreibung |
|---|---|---|---|
datum |
string |
Nein | Optionales Datum im Format YYYY-MM-DD zum Filtern auf einen Tag. |
detailgrad |
string |
Nein | Kommagetrennt, z.B. stammdaten,texte |
ID |
integer |
Nein | Element-ID (optional) |
suchtyp |
string |
Nein |
Fixer Suchtyp: wallbox_scan_log Standard: wallbox_scan_log |
wallbox_ID |
string |
Nein | Filtert Sessions auf eine oder mehrere Wallbox-IDs. |
Input Schema
json
{
"type": "object",
"properties": {
"ID": {
"type": "integer",
"description": "Element-ID (optional)"
},
"detailgrad": {
"type": "string",
"description": "Kommagetrennt, z.B. stammdaten,texte"
},
"wallbox_ID": {
"type": "string",
"description": "Filtert Sessions auf eine oder mehrere Wallbox-IDs."
},
"datum": {
"type": "string",
"description": "Optionales Datum im Format YYYY-MM-DD zum Filtern auf einen Tag."
},
"suchtyp": {
"type": "string",
"description": "Fixer Suchtyp: wallbox_scan_log",
"default": "wallbox_scan_log"
}
}
}
Beispiel-Aufruf
json
{
"tool": "select_wallbox_scan_log",
"arguments": {
"datum": "...",
"detailgrad": "...",
"ID": 1,
"suchtyp": "wallbox_scan_log",
"wallbox_ID": "..."
}
}