laserfiche_entry_get
Retrieve metadata for a Laserfiche entry by its ID. Returns name, type, path, parent ID, template, page count, and timestamps.
Instructions
Fetch metadata for a single entry by ID.
Use this once you have an entry ID (from search, list_folder, or
get_entry_by_path) and need the entry's full metadata: name, type
(Folder vs Document), full path, parent ID, template name, page count
(for paginated documents), and timestamps.
This does NOT return field values — for those, call get_field_values.
This does NOT return document content — for that, call
get_document_edoc (mode="text" for extracted text, mode="bytes"
for the raw file).
Args: entry_id: Integer entry ID.
Returns: EntryDetail (id, name, entry_type, parent_id, full_path,
template_name, page_count, is_electronic_document, extension, creation
time, last modified time).
On failure: returns {"mode": "error", "error": <slug>, "entry_id": <int>, ...}.
Common slugs: not_found, auth_failed.
Input Schema
| Name | Required | Description | Default |
|---|---|---|---|
| entry_id | Yes |
Output Schema
| Name | Required | Description | Default |
|---|---|---|---|
No arguments | |||