Hey guys - I’ve been searching for a while, but I cant find a proper answer… so hoping someone can help. I have written a few flows, and I am consistently runnning into an issue when I want to chain “Call Service” nodes where it tries to merge the payloads of two requests, which sometimes is interesting, but more often for my use has been painful. For example, I want to set the volume on a speaker, and then select the source, so I use two call service nodes, thinking that each one should be an individual call, but what I end up with is a request HASS can’t use since it is no longer a valid request. Here is an example flow
and the payload it creates
domain: “media_player”
service: “volume_set”
data: object
entity_id: “media_player.bedroom”
source: “Virgin Radio 96 FM 95.9 (Hot AC)”
volume_level: “0.30”
I’ve worked around this by using function nodes to either clear the payload, but is there a way to actually make this flow work without a function node?
Thanks