action meraki_get_device_clients { label: "List the clients of a device, up to a maximum of a month ago" description: "List the clients of a device, up to a maximum of a month ago. The usage of each client is returned in kilobytes. If the device is a switch, the switchport is returned; otherwise the switchport field is null." provider: meraki method: GET path: "/devices/{serial}/clients" encoding: json input: { type: "object" properties: { serial: { type: "string" } t0: { type: "string" } timespan: { type: "number" format: "float" } } required: ["serial"] additionalProperties: false } output: { type: "array" items: { type: "object" } } }