curl -X PUT "https://192.168.1.100/api/v1/tags/Tank1_Level" \ -H "Authorization: Bearer <token>" \ -H "Content-Type: application/json" \ -d '"value": 50.0'
curl -X PUT https://192.168.1.100:5001/api/v1/tags/values \ -H "Authorization: Bearer ..." \ -H "Content-Type: application/json" \ -d '["name":"Pump_Enable","value":1,"name":"Setpoint","value":450.0]' \ -k
: External applications can send POST requests to update real-time values or archive tags in WinCC.
curl -X PUT "https://192.168.1.100/api/v1/tags/Tank1_Level" \ -H "Authorization: Bearer <token>" \ -H "Content-Type: application/json" \ -d '"value": 50.0'
curl -X PUT https://192.168.1.100:5001/api/v1/tags/values \ -H "Authorization: Bearer ..." \ -H "Content-Type: application/json" \ -d '["name":"Pump_Enable","value":1,"name":"Setpoint","value":450.0]' \ -k wincc rest api
: External applications can send POST requests to update real-time values or archive tags in WinCC. curl -X PUT "https://192