Get Company List Entries
affinity_get_company_list_entriesRetrieve all list entries for a company across all lists, including list-specific, global, enriched, and relationship-intelligence fields.
Instructions
Get all list entries for a company across ALL lists with full field data.
Returns complete list entry data including:
List-specific fields (Status, Amount, Owners, etc.)
Global fields (account-wide custom fields)
Enriched fields (auto-populated enrichment data)
Relationship-intelligence fields (email/calendar derived)
Parameters:
companyId: Company ID (required) - get from affinity_search_companies or affinity_get_company
cursor: Pagination cursor (optional)
limit: Items per page (default 100, max 100)
Returns (JSON): { "entries": [ { "id": number, // List entry ID "listId": number, // Which list this entry is on "creatorId": number, "createdAt": string, // ISO 8601 "fields": [ { "id": "field-1022243", "name": "Status", "type": "list", // "list", "global", "enriched", "relationship-intelligence" "value": { "type": "ranked-dropdown", "data": { "text": "Portfolio", "rank": 7, "color": "purple" } } } ] } ], "count": number, "hasMore": boolean, "nextCursor": string | null, "summary": { "totalEntries": number, "listsWithEntries": number, "fieldsPerEntry": number } }
Note: Returns empty array if company not on any lists (very common).
Use Cases:
"Get all deal data for this company across pipelines"
"Export company's complete list information"
"See Status, Amount, Owners fields for this portfolio company"
Field Types Included:
list: List-specific fields (Status, Amount, Owners, etc.)
global: Account-wide custom fields
enriched: Auto-populated enrichment data
relationship-intelligence: Email/calendar derived data
Input Schema
| Name | Required | Description | Default |
|---|---|---|---|
| companyId | Yes | Company ID (numeric). Get from affinity_search_companies or affinity_get_company. | |
| cursor | No | Pagination cursor from previous response | |
| limit | No | Items per page (default 100, max 100) | |
| responseFormat | No | Output format: "json" or "markdown". Default: "json" |