APIs
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 }
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.
The response is of type object.
object