action meraki_get_device_switch_port_statuses { label: "Return the status for all the ports of a switch" description: "Return the status for all the ports of a switch" provider: meraki method: GET path: "/devices/{serial}/switchPortStatuses" encoding: json input: { type: "object" properties: { serial: { type: "string" } t0: { type: "string" } timespan: { type: "number" format: "float" } } required: ["serial"] additionalProperties: false } output: { type: "array" items: { type: "object" } } }