action meraki_get_network_ssid_l3_firewall_rules { label: "Return the L3 firewall rules for an SSID on an MR network" description: "Return the L3 firewall rules for an SSID on an MR network" provider: meraki method: GET path: "/networks/{networkId}/ssids/{number}/l3FirewallRules" encoding: json input: { type: "object" properties: { networkId: { type: "string" } number: { type: "string" } } required: ["networkId", "number"] additionalProperties: false } output: { type: "array" items: { type: "object" } } }