get_field_values
Retrieve template field values for a Laserfiche entry using its entry ID. Get metadata such as status, reviewer, or signing date.
Instructions
Read the template field values currently on an entry.
Use after you have an entry ID and need the metadata fields the user
is asking about — e.g. "what's the status of this form?", "who's the
assigned reviewer?", "when was this signed?". For the entry's own
properties (name, type, path), use get_entry instead.
Args: entry_id: Integer entry ID.
Returns: {"values": [...]} — a list of field-value descriptors
under the values key. Each item has field_name, values
(always a list, even for single-value fields), field_type,
is_multi_value, and is_required. Empty / unset fields are
typically omitted by the Repository API rather than returned with
empty values, so an empty list usually means the entry has no
template assigned.
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 | |||