laserfiche_entry_get_by_path
Resolve a Laserfiche file or folder path to its entry ID, enabling further actions like listing contents or retrieving fields.
Instructions
Resolve a backslash-delimited Laserfiche path to its entry.
Use this when the user refers to a location by its name path rather
than an ID — typical when they paste a path from the Laserfiche web
client, or when you've authored a path from a known folder structure.
Once resolved, the returned id feeds into list_folder,
get_entry, get_field_values, etc.
Args:
full_path: Path from the repository root, backslash-separated.
Example: "\Imports\2024\Onboarding\Smith,John". Forward
slashes are also accepted.
Returns: EntryDetail — same shape as get_entry.
On failure: returns {"mode": "error", "error": <slug>, "full_path": <str>, ...}. Common slugs: not_found (no entry at
that path), auth_failed.
Input Schema
| Name | Required | Description | Default |
|---|---|---|---|
| full_path | Yes | Path from the repository root, backslash-separated. Forward slashes are also accepted. Case-insensitive. |
Output Schema
| Name | Required | Description | Default |
|---|---|---|---|
No arguments | |||