I do not understand--you should not need to reprocess the entire organization if you are using the changelog operation (getOrganizationConfigurationChanges), which would give you, at the top of its response, an entry like this, if someone changes the name of a device: {
"ts": "2024-09-10T23:13:53.834424Z",
"adminName": "Person Name",
"adminEmail": "your@email.address",
"adminId": "0",
"networkName": "NETWORK NAME",
"networkId": "L_000000000000000000",
"networkUrl": "/URL_HERE/manage/usage/list",
"ssidName": null,
"ssidNumber": null,
"page": "Cellular Gateways",
"label": "Updated name",
"oldValue": "bc:db:09:00:00:00: OLD NAME",
"newValue": "bc:db:09:00:00:00: NEW NAME",
"oauthClientId": null
} With the old/new value attributes you not only have the MAC of the device, you also have both the new and the old names. Why would you have to reprocess the entire organization?
... View more