...
Lesen eines speziellen Verbindungstyps:
Codeblock | ||||
---|---|---|---|---|
| ||||
{ "method":"cable.connection_type.read", "params":{ "apikey":"24174j3tqj", "id": 4 }, "version":"2.0" } |
Filtern von Verbindungstypen:
Codeblock | ||||
---|---|---|---|---|
| ||||
{ "method":"cable.connection_type.read", "params":{ "apikey":"24174j3tqj", "filter": { "description": "Typ %" } }, "version":"2.0" } |
...
Legt einen neuen Verbindungstyp an.
Beispielaufruf
Codeblock | ||||
---|---|---|---|---|
| ||||
{ "method":"cable.connection_type.create", "params":{ "apikey":"24174j3tqj", "data": { "name":"LWL-Verbindung", "count":40 } }, "version":"2.0" } |
...
Aktualisiert einen bestehenden Verbindungstyp.
Beispielaufruf
Codeblock | ||||
---|---|---|---|---|
| ||||
{ "method":"cable.connection_type.update", "params":{ "apikey":"24174j3tqj", "id":4, "data": { "description":"neue LWL-Verbindung", "wire_count":40 } }, "version":"2.0" } |
...
Löscht einen Verbindungstyp.
Beispielaufruf
Codeblock | ||||
---|---|---|---|---|
| ||||
{ "method":"cable.connection_type.delete", "params":{ "apikey":"24174j3tqj", "id":4 }, "version":"2.0" } |
...