action meraki_get_network_device_uplink { label: "Return the uplink information for a device." description: "Return the uplink information for a device." provider: meraki method: GET path: "/networks/{networkId}/devices/{serial}/uplink" encoding: json input: { type: "object" properties: { networkId: { type: "string" } serial: { type: "string" } } required: ["networkId", "serial"] additionalProperties: false } output: { type: "array" items: { type: "object" } } }