Stringify support

I just figured out how to trigger a Stringify flow from HousePanel linked to either Hubitat or ST. To do this first create a flow with the Maker tile. Something like this:

Copy the REST endpoint the maker tile creates. Next use the new custom tile and place it on a page. Add a line in your hmoptions.cfg file that references your new endpoint to define what happens when you press the custom tile. It should look like:

“post_custom_1”:[[”POST”,”url”,””]],

The url is the post string from maker. Notice the need for two square brackets. This is because each custom tile can have multiple arrays. So if you want to trigger two makers you would do:

“post_custom_1”:[[”POST”,”url”,””],
[“POST”,”url2”,””]],

There are 8 custom tiles. So use post_custom_x for custome tile x where x is 1 through 8.

1 Like