...
Lesen einer speziellen Strecke:
Codeblock | ||||
---|---|---|---|---|
| ||||
{ "method":"cable.section.read", "params":{ "apikey":"24174j3tqj", "id": 4 }, "version":"2.0" } |
Filtern von Strecken:
Codeblock | ||||
---|---|---|---|---|
| ||||
{ "method":"cable.section.read", "params":{ "apikey":"24174j3tqj", "filter": { "description": "Typ %" } }, "version":"2.0" } |
...
Legt eine neue Strecke an.
Beispielaufruf
Codeblock | ||||
---|---|---|---|---|
| ||||
{ "method":"cable.section.create", "params":{ "apikey":"24174j3tqj", "data": { "obj_id": 14, "description":"Strecke A" } }, "version":"2.0" } |
...
Aktualisiert eine bestehende Strecke.
Beispielaufruf
Codeblock | ||||
---|---|---|---|---|
| ||||
{ "method":"cable.section.update", "params":{ "apikey":"24174j3tqj", "id":4, "data": { "description":"Strecke A" } }, "version":"2.0" } |
...
Löscht eine Strecke.
Beispielaufruf
Codeblock | ||||
---|---|---|---|---|
| ||||
{ "method":"cable.section.delete", "params":{ "apikey":"24174j3tqj", "id":4 }, "version":"2.0" } |
...