get-attributes
Retrieve attribute data for CRM resources including companies, people, lists, records, tasks, deals, and notes by specifying resource type, record ID, categories, or specific fields.
Instructions
Get attributes for any resource type (companies, people, lists, records, tasks, deals, notes)
Input Schema
Name | Required | Description | Default |
---|---|---|---|
categories | No | Attribute categories | |
fields | No | Specific attribute field names | |
record_id | No | Record ID to get attributes for (optional) | |
resource_type | Yes | Type of resource to operate on (companies, people, lists, records, tasks) |
Input Schema (JSON Schema)
{
"properties": {
"categories": {
"description": "Attribute categories",
"items": {
"type": "string"
},
"type": "array"
},
"fields": {
"description": "Specific attribute field names",
"items": {
"type": "string"
},
"type": "array"
},
"record_id": {
"description": "Record ID to get attributes for (optional)",
"type": "string"
},
"resource_type": {
"description": "Type of resource to operate on (companies, people, lists, records, tasks)",
"enum": [
"companies",
"people",
"lists",
"records",
"tasks",
"deals",
"notes"
],
"type": "string"
}
},
"required": [
"resource_type"
],
"type": "object"
}