Hi Guys-
I have a rest_command defined in home assistant that looks like this:
rest_command:
espresso_on:
url: 'http://tinyurl.com/xxxxx/on'
I can call it from HA dev tools with a simple:
rest_command.espresso_on
Out of appdaemon I’m trying the following, but it doesn’t appear to be working. This also doesn’t look quite right given other call_service commands I have.
self.call_service("rest_command.espresso_on")
any tips. Thx.