action meraki_get_network_ssid { label: "Return a single SSID" description: "Return a single SSID" provider: meraki method: GET path: "/networks/{networkId}/ssids/{number}" encoding: json input: { type: "object" properties: { networkId: { type: "string" } number: { type: "string" } } required: ["networkId", "number"] additionalProperties: false } output: { type: "object" } }