get-list-entries
Retrieve CRM list entries such as companies and people from sales pipelines. Fetch specific records with pagination support to manage large datasets effectively.
Instructions
Get entries for a specific CRM list (companies, people, etc. in sales pipelines)
Input Schema
Name | Required | Description | Default |
---|---|---|---|
limit | No | Maximum number of entries to fetch (default: 20) | |
listId | Yes | ID of the list to get entries for | |
offset | No | Number of entries to skip for pagination (default: 0) |
Input Schema (JSON Schema)
{
"properties": {
"limit": {
"description": "Maximum number of entries to fetch (default: 20)",
"type": "number"
},
"listId": {
"description": "ID of the list to get entries for",
"type": "string"
},
"offset": {
"description": "Number of entries to skip for pagination (default: 0)",
"type": "number"
}
},
"required": [
"listId"
],
"type": "object"
}