I successfully registered a beacon using Google Proximity API but the response indicates a different UID
Request URL https://proximitybeacon.googleapis.com/v1beta1/beacons:register
Request
{
"advertisedId": {
"type": "EDDYSTONE",
"id": "0x2f234454f4911ba9ffb6"
},
"status": "ACTIVE",
"latLng": {
"latitude": 51.4935657,
"longitude": -0.1465538
}
}
Response
{
"beaconName": "beacons/3!d31d9fdb7e38e787f8f75d5b6bd7df6f",
"advertisedId": {
"type": "EDDYSTONE",
"id": "0x2f234454f4911ba9ffbw=="
},
"status": "ACTIVE",
"latLng": {
"latitude": 51.4935657,
"longitude": -0.14655379999999998
}
}
If you notice carefully, the UID in the response does not match with the UID in POST request. Also, I tried the https://proximitybeacon.googleapis.com/v1beta1/beacons?q=status:active GET and I am still seeing slightly different UID.