Attio
CRM User OAuth

Attio

Manage contacts, companies, and deals through Attio CRM using OAuth authentication.

Auth Model

User OAuth

Standard OAuth 2.0 authorization. A user grants consent and receives an access token. Authpipe handles refresh, rotation, and health monitoring automatically.

Connection Flow

1
Your App
2
Authpipe
3
Attio
@authpipe/node
// Get a valid credential — always fresh, zero latency
const { credential } = await authpipe.getCredential({
  provider: 'attio',
  tenantId: 'org_acme',
  userId: 'user_123',
});
// Use the credential with the provider API
const response = await fetch('https://api.example.com/data', {
  headers: { Authorization: `Bearer ${credential}` },
});
@authpipe/react
// Drop-in React component
<ConnectButton
  provider="attio"
  onSuccess={(conn) => console.log('Connected!', conn)}
/>

Available Scopes

Permissions you can request when connecting to Attio.

record_permission:read

Read records including people, companies, and deals

record_permission:read-write

Read and write records

object_configuration:read

Read object configuration and attribute definitions

object_configuration:read-write

Read and write object configuration

user_management:read

Read workspace user information

task:read

Read tasks

task:read-write

Read and write tasks

list:read

Read lists and list entries

list:read-write

Read and write lists and list entries

note:read

Read notes on records

note:read-write

Read and write notes on records

What Authpipe handles for Attio

OAuth Orchestration

PKCE, state validation, callback handling, and provider-specific quirks — all automatic.

Encrypted Vault

AES-256-GCM encryption with per-tenant key isolation. OAuth tokens, API keys, and webhook secrets — never exposed to the frontend.

Silent Refresh

Proactive token refresh before expiry. SDK returns from local cache with zero latency.

Health Monitoring

Scheduled checks detect revoked tokens and expired credentials before users notice.

More CRM providers

Ready to connect Attio?

Get your first 100 connections free. Set up in minutes with our SDK.