action meraki_get_network_firewalled_service { label: "Return the accessibility settings of the given service ('ICMP', 'web', or 'SNMP')" description: "Return the accessibility settings of the given service ('ICMP', 'web', or 'SNMP')" provider: meraki method: GET path: "/networks/{networkId}/firewalledServices/{service}" encoding: json input: { type: "object" properties: { networkId: { type: "string" } service: { type: "string" } } required: ["networkId", "service"] additionalProperties: false } output: { type: "object" } }