Authorizations
The API key to use for authentication. Retrieve your API key from the Miru dashboard.
Path Parameters
The unique identifier of the device.
Example:
"dvc_123"
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"