Get Call History
phonelink_get_callsRetrieve recent call history from Phone Link, including caller/number, call type, and display text. Specify max_calls to control how many entries are returned.
Instructions
Read recent call history from Phone Link's Calls tab.
Navigates to the Calls tab and scrapes the visible call list. Each entry includes the contact/number, call type (incoming/outgoing/missed), and display text.
Args:
max_calls (number): Maximum call entries to return (1-100, default: 20).
Returns: { "call_count": number, "calls": [{ "display_text": string, // Full text shown for the call entry "call_type": "incoming" | "outgoing" | "missed" | "unknown", "automation_id": string }] }
Input Schema
| Name | Required | Description | Default |
|---|---|---|---|
| max_calls | No | Maximum number of call entries to return (default: 20). |