action meraki_get_network_sm_cellular_usage_history { label: "Return the client's daily cellular data usage history" description: "Return the client's daily cellular data usage history. Usage data is in kilobytes." provider: meraki method: GET path: "/networks/{networkId}/sm/{deviceId}/cellularUsageHistory" encoding: json input: { type: "object" properties: { deviceId: { type: "string" } networkId: { type: "string" } } required: ["deviceId", "networkId"] additionalProperties: false } output: { type: "array" items: { type: "object" } } }