action meraki_get_network_ssids { label: "List the SSIDs in a network" description: "List the SSIDs in a network. Supports networks with access points or wireless-enabled security appliances and teleworker gateways." provider: meraki method: GET path: "/networks/{networkId}/ssids" encoding: json input: { type: "object" properties: { networkId: { type: "string" } } required: ["networkId"] additionalProperties: false } output: { type: "array" items: { type: "object" } } }