2025-10-21.zion
Delete a device by ID.
Python
from miru_server_sdk import Miru client = Miru( api_key="My API Key", ) device = client.devices.delete( "dvc_123", ) print(device.id)
{ "object": "device", "id": "dvc_123", "deleted": true }
devices:delete
The API key to use for authentication. Retrieve your API key from the Miru dashboard.
The unique identifier of the device.
"dvc_123"
Successfully deleted the device.
device
"device"
The ID of the device.
Whether the device was deleted.
true