We have our own rails back-end and we want to allow our users to do some simple beacon management from our dashboard. Using the rest api we can get a list of all the beacons on our account with the /v1/beacons endpoint, which is a good starting point, but I’m wondering if there is any way to:
A) Filter and/or limit results from the /v1/beacons endpoint. Right now we’re just getting a dump of every beacon on our account. Not a big deal right now since we have < 50 beacons, but it’ll start to become pretty inefficient and messy as soon as we ramp up a bit.
B) Update simple beacon properties like name and tags. I see that there are a few endpoints in private beta that enable users to set asynchronous settings changes for things like advertising interval, power level, etc. but I don’t see anything in the documentation for updating the simple identifier properties.
Are these types of things possible, but not documented? Or are they just not implemented in the API yet?
Thanks!