action meraki_get_network_sm_connectivity { label: "Returns historical connectivity data (whether a device is regularly checking in to Dashboard)." description: "Returns historical connectivity data (whether a device is regularly checking in to Dashboard)." provider: meraki method: GET path: "/networks/{network_id}/sm/{id}/connectivity" 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" } } }