action meraki_get_network_device_performance { label: "Return the performance score for a single MX" description: "Return the performance score for a single MX. Only primary MX devices supported. If no data is available, a 204 error code is returned." provider: meraki method: GET path: "/networks/{networkId}/devices/{serial}/performance" encoding: json input: { type: "object" properties: { networkId: { type: "string" } serial: { type: "string" } } required: ["networkId", "serial"] additionalProperties: false } output: { type: "object" } }