Here's a quick write up.
You should have already created some scenes on your PowerView hub. I had open and close scenes for all my blinds as well as some partial open scenes.
Find your hub's IP Address. I found mine by logging into my router and looking at the devices.
Let's say mine was 192.168.0.255
Once you have the IP, go to
http://Let's say mine was 192.168.0.255/api/scenes.
You'll see something like this:
{"sceneIds":[22215,12744,29368,30096,127,29335,41952],"sceneData":[
{"id":22215,"name":"RmFtaWx5IFJvb20gT3Blbg==","roomId":17513,"order":0,"colorId":3,"iconId":0},
{"id":12744,"name":"RmFtaWx5IFJvb20gQ2xvc2U=","roomId":17513,"order":1,"colorId":9,"iconId":0},
{"id":29368,"name":"RmFtaWx5IFJvb20gUGFydGlhbA==","roomId":17513,"order":2,"colorId":8,"iconId":0},
{"id":30096,"name":"TGl2aW5nIFJvb20gT3Blbg==","roomId":51456,"order":3,"colorId":3,"iconId":0},
{"id":127,"name":"TGl2aW5nIFJvb20gQ2xvc2U=","roomId":51456,"order":4,"colorId":9,"iconId":0},
{"id":29335,"name":"QmVkcm9vbSBPcGVu","roomId":47482,"order":5,"colorId":3,"iconId":0},
{"id":41952,"name":"QmVkcm9vbSBDbG9zZQ==","roomId":47482,"order":6,"colorId":9,"iconId":0}]}
There should be an entry for each scene you created with the PowerView app.
Next go to a web browser and try each of the "id" numbers with the following URL.
http://192.168.0.255/api/scenes?sceneid= <---enter a scene id here like below
http://192.168.0.255/api/scenes?sceneid=22215 and see what happens. A blind should open or close or do nothing if it is already in the position the scene is trying to set.
Through trial and error, I figured out what each "id" did and wrote it down.
Next, I created scenes on Vera for each scene I had on the PowerView Hub.
Each scene just consists of some luaa code that essentially sends the same url.
So for the first entry in the table, (id 22215) I created a scene in vera called "open family room"
In that scene I added the following luaa code:
local timeout = 5
local status, result = luup.inet.wget("http://192.168.0.19/api/scenes?sceneid=41952", timeout)
And that's about it. Now in vera you can launch that scene and your blind will open.
I used the Amazon Echo Philips Hub emulator that people are using here to control lights to control blinds as well.
The Philips Hub Emulator will have an entry for each scene and when Amazon recognizes the command, will execute the associated scene which will send the URL request to the PowerView hub and you'll have voice control.