action meraki_get_network_sm_network_adapters { label: "List the network adapters of a device" description: "List the network adapters of a device" provider: meraki method: GET path: "/networks/{networkId}/sm/{deviceId}/networkAdapters" encoding: json input: { type: "object" properties: { deviceId: { type: "string" } networkId: { type: "string" } } required: ["deviceId", "networkId"] additionalProperties: false } output: { type: "array" items: { type: "object" } } }