Currently I only know of 1 method to automate this: Python Script Python gives you full read/write API access. Here’s what it can do: What a Python script could do: 1. Pull Devices from Meraki Dashboard Use Meraki API: GET /networks/{networkId}/clients?timespan=86400 This gives MAC addresses and current device names 2. Pull Asset Inventory Use their API (likely GET /assets or similar endpoint). Match by MAC address. Retrieve the correct asset name (possibly hostname or asset tag). 3. Compare Names For each device in Meraki: If the name is missing or doesn't match the asset system → update it. 4. Update Meraki Device Name Use: PUT /networks/{networkId}/clients/{mac}
... View more