get-detailed-info
Retrieve comprehensive details for Attio CRM records including contacts, companies, lists, tasks, deals, and notes using specific record identifiers.
Instructions
Get specific types of detailed information (contact, business, social)
Input Schema
Name | Required | Description | Default |
---|---|---|---|
record_id | Yes | Unique identifier of the record | |
resource_type | Yes | Type of resource |
Input Schema (JSON Schema)
{
"properties": {
"record_id": {
"description": "Unique identifier of the record",
"type": "string"
},
"resource_type": {
"description": "Type of resource",
"enum": [
"companies",
"people",
"lists",
"records",
"tasks",
"deals",
"notes"
],
"type": "string"
}
},
"required": [
"resource_type",
"record_id"
],
"type": "object"
}