action meraki_get_network_switch_settings_qos_rules { label: "List quality of service rules" description: "List quality of service rules" provider: meraki method: GET path: "/networks/{networkId}/switch/settings/qosRules" encoding: json input: { type: "object" properties: { networkId: { type: "string" } } required: ["networkId"] additionalProperties: false } output: { type: "array" items: { type: "object" } } }