Install
openclaw skills install attio-enhancedImproved Attio CRM integration with batch record creation, error handling, field mapping, and support for companies, people, and deals.
openclaw skills install attio-enhancedEnhanced Attio CRM API skill with batch operations.
This skill requires Attio credentials. You must set these environment variables before use:
export ATTIO_API_KEY=your_api_key
export ATTIO_WORKSPACE_ID=your_workspace_id
Get API key from: https://app.attio.com/settings/api
Find workspace ID in your Attio URL: app.attio.com/[workspace-id]/...
import os
os.environ['ATTIO_API_KEY'] = 'your_key'
os.environ['ATTIO_WORKSPACE_ID'] = 'your_workspace'
from lib.attio_enhanced import AttioEnhancedClient
async with AttioEnhancedClient() as client:
# Create companies
await client.batch_create_records('companies', [{'name': 'Gameye'}])
# Create people
await client.batch_create_records('people', [
{'name': ['John Doe'], 'email_addresses': ['john@example.com']}
])
python3 -c "from lib.attio_enhanced import AttioEnhancedClient; print('OK')"
first_name + last_name → Attio name formatemail → email_addresses