...
Lesen eines speziellen Kabeltyps:
Codeblock | ||||
---|---|---|---|---|
| ||||
{ "method":"cable.type.read", "params":{ "apikey":"24174j3tqj", "id": 4 }, "version":"2.0" } |
...
Filtern von Kabeltypen:
Codeblock | ||||
---|---|---|---|---|
| ||||
{ "method":"cable.type.read", "params":{ "apikey":"24174j3tqj", "filter": { "description": "Typ %" } }, "version":"2.0" } |
...
Legt einen neuen Kabeltyp an.
Beispielaufruf
Codeblock | ||||
---|---|---|---|---|
| ||||
{ "method":"cable.type.create", "params":{ "apikey":"24174j3tqj", "data": { "description":"40-adriges Kabel", "wire_count":40 } }, "version":"2.0" } |
...
Aktualisiert eine bestehenden Kabeltyp.
Beispielaufruf
Codeblock | ||||
---|---|---|---|---|
| ||||
{ "method":"cable.type.update", "params":{ "apikey":"24174j3tqj", "id":4, "data": { "description":"40-adriges Kabel", "wire_count":40 } }, "version":"2.0" } |
...
Löscht einen Kabeltyp.
Beispielaufruf
Codeblock | ||||
---|---|---|---|---|
| ||||
{ "method":"cable.type.delete", "params":{ "apikey":"24174j3tqj", "id":4 }, "version":"2.0" } |
...