Get Thumbnail (EVS)
get_thumbnailFetch a thumbnail preview for a backed-up file version using the device ID, EVS path, and timestamp from a prior list_files or browse_folder call.
Instructions
Fetches a thumbnail preview image for a backed-up file, via the EVS-hosted evs/getThumbnail endpoint. The path must be in the EVS format ("/C/Users/..."), and timestamp must be the file's lmd_web value from a prior list_files or browse_folder call's entry for it — there's no way to guess a correct timestamp without one of those calls first.
Input Schema
| Name | Required | Description | Default |
|---|---|---|---|
| path | Yes | The folder or file path, in the EVS format: single leading slash plus drive letter, e.g. "/C" for a drive root or "/C/Users/me/Documents" for a deeper path. This endpoint has never been observed handling a bare root path ("/") — use the sibling `list_files` tool first to discover the available drive letters/roots for this device, then pass one of those (prefixed with a leading slash) here. | |
| deviceId | Yes | The iDrive device ID the file was backed up from, e.g. as returned by the sibling `list_devices` tool's `device_id` field. | |
| timestamp | Yes | The file's `lmd_web` timestamp, as returned by a prior `list_files` or `browse_folder` call's entry for this file. There is no default — a thumbnail request needs the exact version's timestamp to identify which cached rendering to return. |