filter-list-entries-by-parent-id
Filter CRM list entries to find all lists containing a specific company or person by their parent record ID, enabling targeted data retrieval from your Attio database.
Instructions
Filter CRM list entries by parent record ID (find all lists containing a specific company or person)
Input Schema
Name | Required | Description | Default |
---|---|---|---|
limit | No | Maximum number of entries to fetch (default: 20) | |
listId | Yes | ID of the list to filter entries from | |
offset | No | Number of entries to skip for pagination (default: 0) | |
recordId | Yes | ID of the parent record to filter by |
Input Schema (JSON Schema)
{
"properties": {
"limit": {
"description": "Maximum number of entries to fetch (default: 20)",
"type": "number"
},
"listId": {
"description": "ID of the list to filter entries from",
"type": "string"
},
"offset": {
"description": "Number of entries to skip for pagination (default: 0)",
"type": "number"
},
"recordId": {
"description": "ID of the parent record to filter by",
"type": "string"
}
},
"required": [
"listId",
"recordId"
],
"type": "object"
}