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