action meraki_get_network_sm_performance_history { label: "Return historical records of various Systems Manager client metrics for desktop devices." description: "Return historical records of various Systems Manager client metrics for desktop devices." provider: meraki method: GET path: "/networks/{network_id}/sm/{id}/performanceHistory" encoding: json input: { type: "object" properties: { endingBefore: { type: "string" } id: { type: "string" } network_id: { type: "string" } perPage: { type: "integer" } startingAfter: { type: "string" } } required: ["id", "network_id"] additionalProperties: false } output: { type: "array" items: { type: "object" } } }