call_logs_list
Retrieve call logs for the authenticated user with pagination. Access phone call details including duration, outcome, and linked records like persons and deals.
Instructions
Get all call logs assigned to the current user.
Retrieves call logs with pagination support. Returns logs for phone calls including duration, outcome, and associated records.
Workflow tips:
Returns call logs for the authenticated user
Use start and limit for pagination
Each call log includes phone numbers, duration, outcome, and timestamps
Can be linked to persons, organizations, deals, and leads
Cached for 1 minute for better performance
Common use cases:
List recent calls: { "start": 0, "limit": 50 }
Paginate through calls: { "start": 50, "limit": 50 }
Get all call history: Iterate through pages
Input Schema
| Name | Required | Description | Default |
|---|---|---|---|
| start | No | Pagination start | |
| limit | No | Number of items to return (max 50) |