action meraki_get_network_traffic { label: "Return the traffic analysis data for this network" description: "Return the traffic analysis data for this network. Traffic analysis with hostname visibility must be enabled on the network." provider: meraki method: GET path: "/networks/{networkId}/traffic" encoding: json input: { type: "object" properties: { deviceType: { type: "string" enum: ["appliance", "combined", "switch", "wireless"] } networkId: { type: "string" } t0: { type: "string" } timespan: { type: "number" format: "float" } } required: ["networkId"] additionalProperties: false } output: { type: "array" items: { type: "object" } } }