action meraki_get_network_camera_video_link { label: "Returns video link to the specified camera" description: "Returns video link to the specified camera. If a timestamp is supplied, it links to that timestamp." provider: meraki method: GET path: "/networks/{networkId}/cameras/{serial}/videoLink" encoding: json input: { type: "object" properties: { networkId: { type: "string" } serial: { type: "string" } timestamp: { type: "string" } } required: ["networkId", "serial"] additionalProperties: false } output: { type: "object" } }