action meraki_get_network_switch_link_aggregations { label: "List link aggregation groups" description: "List link aggregation groups" provider: meraki method: GET path: "/networks/{networkId}/switch/linkAggregations" encoding: json input: { type: "object" properties: { networkId: { type: "string" } } required: ["networkId"] additionalProperties: false } output: { type: "array" items: { type: "object" } } }