Beacon Management using REST API

Hey, I’m trying to build a dashboard to monitor all my beacons and queue basic changes such as updating the name or location of the beacons using the web API. I noticed that the version 3 of the web API do not provide any methods to perform such operations and only allow changing the advertising settings and configurations. So I was wondering if there are any other methods available to update the tags, name and location of the beacons.

Name, tags, etc. can be managed the exact same way as settings, by POSTing to /v3/devices/XXX, for example:

{
  "identifier": "40b334d1d6e81be37d0dd85b9b9f373c",
  "shadow": {
    "name": "my beacon",
    "tags": ["warehouse", "entrance"]
  }
}