get_row
Fetch a single row by ID from a specified dataset, optionally limited to chosen columns. Use to answer questions about one record, such as retrieving a person's phone number.
Instructions
Fetch a single row by id, optionally limited to specific columns.
Use this when the user asks about one record ("show me row 12", "what is Asha's phone number?"). Ask for only the columns you need to keep the response small.
Args: dataset: Exact dataset name, e.g. "Candidates". row_id: The row id, e.g. "12". columns: Optional list of column names to project, e.g. ["name", "stage"].
Returns: {"ok": true, "dataset", "row": {"id", ...requested columns}} on success, {"ok": false, "error": ""} for unknown ids or columns.
Example: get_row(dataset="Candidates", row_id="12", columns=["name", "phone"])
Input Schema
| Name | Required | Description | Default |
|---|---|---|---|
| row_id | Yes | ||
| columns | No | ||
| dataset | Yes |
Output Schema
| Name | Required | Description | Default |
|---|---|---|---|
No arguments | |||