Hi Diego Chavez
Welcome to Microsoft Q&A and Thank you for reaching out.
This behavior usually indicates that the device was successfully created in IoT Hub but the portal UI is not refreshing or rendering the device list correctly. Here’s how you can confirm and resolve it:
Verify Device Exists
- Use Azure CLI or REST API:
If the device exists, you’ll get its JSON details.az iot hub device-identity show --device-id <deviceName> --hub-name <yourIoTHubName> - Alternatively, use:
This lists all devices regardless of UI issues.az iot hub device-identity list --hub-name <yourIoTHubName>
UI Shows “Device Already Exists”
- The portal checks the backend before creating a new device. Since the device exists, you get the error.
- The Devices page may fail to load due to:
- Browser cache issues.
- Portal bug (recently reported in some regions).
- Filters applied (e.g., showing only enabled devices).
Fixes & Workarounds
- Clear filters on the Devices page (check if “Status” or “Tags” filters are active).
- Hard refresh the portal (Ctrl+Shift+R) or try in an incognito window.
- If still missing:
- Use Azure CLI or IoT Explorer to manage the device.
- Check if the device is in a different IoT Hub or subscription.
I Hope this helps. Do let me know if you have any further queries.
Thank you!