action meraki_get_network_cellular_firewall_rules { label: "Return the cellular firewall rules for an MX network" description: "Return the cellular firewall rules for an MX network" provider: meraki method: GET path: "/networks/{networkId}/cellularFirewallRules" encoding: json input: { type: "object" properties: { networkId: { type: "string" } } required: ["networkId"] additionalProperties: false } output: { type: "array" items: { type: "object" } } }