get-record-list-memberships
Find all CRM lists that contain a specific record (company or person) to understand its groupings and relationships within Attio CRM.
Instructions
Find all CRM lists that a specific record (company, person, etc.) belongs to
Input Schema
Name | Required | Description | Default |
---|---|---|---|
batchSize | No | Number of lists to process in parallel (1-20, default: 5) | |
includeEntryValues | No | Whether to include entry values in the response (e.g., stage, status) | |
objectType | No | Type of record (e.g., "companies", "people") | |
recordId | Yes | ID of the record to find in lists |
Input Schema (JSON Schema)
{
"properties": {
"batchSize": {
"default": 5,
"description": "Number of lists to process in parallel (1-20, default: 5)",
"maximum": 20,
"minimum": 1,
"type": "number"
},
"includeEntryValues": {
"default": false,
"description": "Whether to include entry values in the response (e.g., stage, status)",
"type": "boolean"
},
"objectType": {
"description": "Type of record (e.g., \"companies\", \"people\")",
"enum": [
"companies",
"people"
],
"type": "string"
},
"recordId": {
"description": "ID of the record to find in lists",
"type": "string"
}
},
"required": [
"recordId"
],
"type": "object"
}