We have not added such an endpoint.
What I think you are asking for
I imagine you are thinking of something like:
devices/00112233/state
==>
{"open":0,"position":0,"_":"fc9a5b5d","__":"fc9a5b5d"}
devices/_all/state
==>
{
"00112233":{"open":0,"position":0,"_":"fc9a5b5d","__":"fc9a5b5d"},
"44556677":{"open":1,"position":42,"_":"020f020f","__":"020f020f"},
...
}
This is of course theoretically possible, but there’s a couple issues:
- content length limit of 8000 bytes that we currently impose on Bond request (and response) bodies.
- integrations would need to be updated to understand any of these
_all
topics.
What I propose
Perhaps a compromise would be a way to do a GET against a wildcard topic, via BPUP. Then you could do something like:
BPUP GET topic=devices/+/state
And what this actually does is, triggers the Bridge to respond, over BPUP with n messages, one for each device, on the original topics.
So this way, no new parsing needs to happen on the HA side. You’d just need to add a single line to your startup code and then your current callbacks would handle all the states. It’s a bit verbose, but hey it’s better than having to poll all those HTTP calls.
LMK what you think.
We’ve got a lot on our plates, but making things easier for control-system integrators is high priority over here, so we could squeeze this in.