action meraki_get_network_static_routes { label: "List the static routes for an MX or teleworker network" description: "List the static routes for an MX or teleworker network" provider: meraki method: GET path: "/networks/{networkId}/staticRoutes" encoding: json input: { type: "object" properties: { networkId: { type: "string" } } required: ["networkId"] additionalProperties: false } output: { type: "array" items: { type: "object" } } }