Hello,
When making changes to an webIQ project and push it to the customer, the current recipe data of the customer is being overwritten. Is there a way to export/import all recipes instead of doing it one by one with the UI action? There are over 20 recipe's and it takes a lot of time.
WebIQ recipe data backup and restore
The UI Action allows you to export all recipes of the selected recipe widget that references a specific recipe template all at once:
If you are talking about 20 different recipe templates then you'd have to do it like this with 20 buttons or you could write your own UI action that does all of this at once.
Or if you regularly do that you could simply connect to the server API and retrieve the data on your own. Everything you can do from a widget, a LocalScript or a UI action when it comes to server data uses the API so you can also use it if you want to fully automate this:
https://customer.smart-hmi.de/download/deliver/docs/documentation-dev-connect-apidoc-version-2.16.x-5ba5/index.html#_recipe_list
There is also an API example with NodeJS available: https://customer.smart-hmi.de/download/deliver/xmp/Additional%20Software/webiq-server-api-example-nodejs.zip though you can use any programming language you want that supports websocket connections.