Is it possible return part of the published data in a webhook response topic?
For example, I have a webhook that gets the forecast for a particular city from Wunderground. The call looks like this:
https://api.wunderground.com/api/my_key/forecast/q/{{state}}/{{city}}.json
I have multiple photons that may or may not want the data from any particular city. If there are two devices in the same city, and one of them triggers this webhook, it’d be nice if the other one could receive the data by subscribing a response event for that city. It might look something like this:
hook-response/getWeather/NewYorkCity
However, when I try to create a response topic like this:
hook-response/getWeather/{{city}}
I get hook-response/getWeather//0
with the city name omitted.