added

1 Jun 2022 - Nano ID Support

Support was added to registering devices with "NanoID" instead of MAC Address and Serial Number.

Before this change, in order to register to the Xyte platform, the device needed to send the following parameters:

{  
    "partner_key": "66b9611...",  
    "mac": "43:19:12:56:14:12",  
    "sn": "445585r44",  
    "nano_id" : "",  
    "model_id": "d5168a...",  
    "firmware_version": "1.0.0"  
}

Now when creating a Model on the Partner side, the partner can select the "Authentication method" (Mac & SN or NanoID) and devices of that Model type should register with the following parameters:

{  
    "partner_key": "66b9611...",  
    "nano_id": "axvdr3.....",  
    "mac": "43:19:12:56:14:12",  
    "sn": "445585r44",  
    "nano_id" : "",  
    "model_id": "d5168a...",  
    "firmware_version": "1.0.0"  
}

NOTE: The MAC and SN can still be sent for information purposes - but will not be used for claiming the device.

For more details, please visit Registration .