discover-attributes
Find available attributes for Attio CRM resources including companies, people, lists, records, and tasks to understand data structure and available fields.
Instructions
Discover available attributes for any resource type
Input Schema
Name | Required | Description | Default |
---|---|---|---|
categories | No | Attribute categories | |
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"
},
"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"
}