get_device_status
Check the online or offline status of devices on a Firewalla network, filter by specific box or group, and manage up to 1000 devices efficiently.
Instructions
Check online/offline status of devices on Firewalla network
Input Schema
Name | Required | Description | Default |
---|---|---|---|
box | No | Get devices under a specific Firewalla box (requires box ID) | |
group | No | Get devices under a specific box group (requires group ID) | |
limit | Yes | Maximum number of devices to return (required) |
Input Schema (JSON Schema)
{
"properties": {
"box": {
"description": "Get devices under a specific Firewalla box (requires box ID)",
"type": "string"
},
"group": {
"description": "Get devices under a specific box group (requires group ID)",
"type": "string"
},
"limit": {
"description": "Maximum number of devices to return (required)",
"maximum": 1000,
"minimum": 1,
"type": "number"
}
},
"required": [
"limit"
],
"type": "object"
}