That command is the same as the one they said they have already run, the python library is just a wrapper that makes the API commands easier to use. def rebootDevice(self, serial: str): """ **Reboot a device** https://developer.cisco.com/meraki/api-v1/#!reboot-device - serial (string): (required) """ metadata = { 'tags': ['devices', 'liveTools'], 'operation': 'rebootDevice' } resource = f'/devices/{serial}/reboot' return self._session.post(metadata, resource)
... View more