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
}Delete a device by ID.
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
}The API key to use for authentication. Retrieve your API key from the Miru dashboard.
The unique identifier of the device.
"dvc_123"