action meraki_get_network_appliance_ports { label: "List per-port VLAN settings for all ports of a MX." description: "List per-port VLAN settings for all ports of a MX." provider: meraki method: GET path: "/networks/{networkId}/appliancePorts" encoding: json input: { type: "object" properties: { networkId: { type: "string" } } required: ["networkId"] additionalProperties: false } output: { type: "array" items: { type: "object" } } }