Thanks for your suggestion. This is what I have in the config.yaml file (I have masked the last octet of the IP with ‘X’ here). Is there anything else that I should be doing to call this service? Again, this works fine on the web UI (sandbox) and not in HA.
Example configuration.yaml
rest_command:
assistant_broadcast:
url: http://192.168.1.X:3000/assistant
method: POST
content_type: ‘application/json’
payload: ‘{“command”:"{{ command }}", “user”:“Nick”, “broadcast”:true}’
assistant_converse:
url: http://192.168.1.X:3000/assistant
method: POST
content_type: ‘application/json’
payload: ‘{“command”:"{{ command }}", “user”:“Nick”, “converse”:true}’
assistant_relay:
url: http://192.168.1.X/assistant
method: POST
content_type: ‘application/json’
payload: ‘{“command”:"{{ command }}", “user”:“Nick”}’