Attio
Aynı zamanda bir ajan aracıAttio integration (REST API v2). Modern data-model-driven CRM. Generic object/record CRUD over an {object} path param (people, companies, deals, users, workspaces, or custom), plus lists & entries, attributes, workspace members, notes, tasks, comments, threads, and webhook subscription management. Bearer api_key auth (single-workspace token; OAuth 2.0 documented as an alternate). Real signed webhooks (Attio-Signature HMAC-SHA256 hex over raw body, generic_hmac) emitting record/list-entry/note/task/comment CloudEvents. Binary surfaces (files/call-recordings/meetings/transcripts) are deferred — see attio-06/attio-08.
60 eylemler · 9 tetikleyiciler
Attio entegrasyonu — 60 aksiyon ve 9 tetikleyici ile Attio'ı otomasyonlarına bağla; her aksiyon aynı zamanda bir AI agent aracı. Örnek: Identify (Self), List Objects, Create Object, Get Object, Update Object. Boş bir tuvalde uğraşmadan — bağla ve workflow'larında kullan.
Aşağıdaki her eylem, bir AI ajanının da çağırabileceği bir araçtır — aynı pack hem iş akışlarınızı hem ajanlarınızı çalıştırır.
Tetikleyiciler 9
Attio üzerinde bir iş akışını başlatabilen olaylar.
Record Created
Fires when a record is created in any object (Attio webhook event_type record.created).
Record Updated
Fires when an attribute on a record is updated (Attio webhook event_type record.updated).
Record Deleted
Fires when a record is deleted (Attio webhook event_type record.deleted).
List Entry Created
Fires when a record is added to a list (Attio webhook event_type list-entry.created).
List Entry Deleted
Fires when a list entry is removed (Attio webhook event_type list-entry.deleted).
Note Created
Fires when a note is created (Attio webhook event_type note.created).
Task Created
Fires when a task is created (Attio webhook event_type task.created).
Comment Created
Fires when a comment is created (Attio webhook event_type comment.created).
New/updated Attio records
Polls a chosen object for records since the last run. Webhooks are the preferred trigger path for Attio.
Eylemler 60
Zervanor'un Attio üzerinde yapabilecekleri.
Objects15
List Objects
List all objects (standard + custom) defined in the workspace (Attio: GET /objects).
Create Object
Create a custom object (Attio: POST /objects).
Get Object
Get a single object by slug or UUID (Attio: GET /objects/{object}).
Update Object
Update an object's definition (Attio: PATCH /objects/{object}).
List Object Views
List the views defined for an object (Attio: GET /objects/{object}/views).
List Records
List/query records of ANY object with filter, sorts, limit, offset (Attio: POST /objects/{object}/records/query). The generic record-read endpoint — {object} selects which object's records to query.
Get Record
Get a single record by id within an object (Attio: GET /objects/{object}/records/{record_id}).
Create Record
Create a record in any object (Attio: POST /objects/{object}/records). Body: { "data": { "values": { ... } } }. Returns the new record id at data.id.record_id. WRITE test target (paired with delete_record cleanup).
Upsert Record
Create or update a record by a matching attribute (Attio: PUT /objects/{object}/records). Body carries the matching attribute + values.
Update Record
Update a record, OVERWRITING multiselect values (Attio: PATCH /objects/{object}/records/{record_id}).
Append Record Values
Update a record, APPENDING multiselect values (Attio: PUT /objects/{object}/records/{record_id}).
Delete Record
Delete a record by id within an object (Attio: DELETE /objects/{object}/records/{record_id}). CLEANUP test target for create_record.
Search Records
Full-text/identity search of records within an object (Attio: POST /objects/{object}/records/search).
List Record Attribute Values
List the value history of one attribute on a record (Attio: GET /objects/{object}/records/{record_id}/attributes/{attribute}/values).
List Record's List Entries
List the list-entries where this record is the parent (Attio: GET /objects/{object}/records/{record_id}/entries).
Lists13
List Lists
List all lists in the workspace (Attio: GET /lists).
Create List
Create a list (Attio: POST /lists).
Get List
Get a single list by slug or UUID (Attio: GET /lists/{list}).
Update List
Update a list (Attio: PATCH /lists/{list}).
List List Views
List the views defined for a list (Attio: GET /lists/{list}/views).
List Entries
List entries in a list with filter/sort/pagination (Attio: POST /lists/{list}/entries/query).
Create Entry
Add a record to a list as an entry (Attio: POST /lists/{list}/entries).
Upsert Entry
Create or update a list entry by parent record (Attio: PUT /lists/{list}/entries).
Get Entry
Get a single list entry (Attio: GET /lists/{list}/entries/{entry_id}).
Update Entry
Update a list entry, OVERWRITING multiselect values (Attio: PATCH /lists/{list}/entries/{entry_id}).
Append Entry Values
Update a list entry, APPENDING multiselect values (Attio: PUT /lists/{list}/entries/{entry_id}).
Delete Entry
Remove an entry from a list (Attio: DELETE /lists/{list}/entries/{entry_id}).
List Entry Attribute Values
List the value history of one attribute on a list entry (Attio: GET /lists/{list}/entries/{entry_id}/attributes/{attribute}/values).
Attributes10
List Attributes
List the attributes of an object or list (Attio: GET /{target}/{identifier}/attributes). target = objects | lists.
Create Attribute
Create an attribute on an object or list (Attio: POST /{target}/{identifier}/attributes).
Get Attribute
Get a single attribute on an object or list (Attio: GET /{target}/{identifier}/attributes/{attribute}).
Update Attribute
Update an attribute on an object or list (Attio: PATCH /{target}/{identifier}/attributes/{attribute}).
List Attribute Options
List the select options of an attribute (Attio: GET /{target}/{identifier}/attributes/{attribute}/options).
Create Attribute Option
Create a select option on an attribute (Attio: POST /{target}/{identifier}/attributes/{attribute}/options).
Update Attribute Option
Update a select option on an attribute (Attio: PATCH /{target}/{identifier}/attributes/{attribute}/options/{option}).
List Attribute Statuses
List the statuses of an attribute (Attio: GET /{target}/{identifier}/attributes/{attribute}/statuses).
Create Attribute Status
Create a status on an attribute (Attio: POST /{target}/{identifier}/attributes/{attribute}/statuses).
Update Attribute Status
Update a status on an attribute (Attio: PATCH /{target}/{identifier}/attributes/{attribute}/statuses/{status}).
Tasks5
List Tasks
List tasks (Attio: GET /tasks).
Create Task
Create a task (Attio: POST /tasks).
Get Task
Get a single task (Attio: GET /tasks/{task_id}).
Update Task
Update a task (Attio: PATCH /tasks/{task_id}).
Delete Task
Delete a task (Attio: DELETE /tasks/{task_id}).
Webhooks5
List Webhooks
List the webhooks registered for the workspace (Attio: GET /webhooks).
Create Webhook
Register a webhook with target_url + subscriptions[]; returns the signing secret once (Attio: POST /webhooks). Requires webhook:read-write scope.
Get Webhook
Get a single webhook (Attio: GET /webhooks/{webhook_id}).
Update Webhook
Update a webhook's target_url or subscriptions (Attio: PATCH /webhooks/{webhook_id}).
Delete Webhook
Delete a webhook (Attio: DELETE /webhooks/{webhook_id}).
Notes4
List Notes
List notes, optionally filtered by parent object/record (Attio: GET /notes).
Create Note
Create a note attached to a record (Attio: POST /notes).
Get Note
Get a single note (Attio: GET /notes/{note_id}).
Delete Note
Delete a note (Attio: DELETE /notes/{note_id}).
Comments3
Create Comment
Create a comment on a thread/record/entry (Attio: POST /comments).
Get Comment
Get a single comment (Attio: GET /comments/{comment_id}).
Delete Comment
Delete a comment (Attio: DELETE /comments/{comment_id}).
Threads2
List Threads
List comment threads (Attio: GET /threads).
Get Thread
Get a single comment thread (Attio: GET /threads/{thread_id}).
Workspace Members2
List Workspace Members
List the workspace members — id, name, email, access_level (Attio: GET /workspace_members).
Get Workspace Member
Get a single workspace member (Attio: GET /workspace_members/{workspace_member_id}).
Self1
Identify (Self)
Identify the current access token — returns active, scope, workspace_id, workspace_name, client_id, token_type, exp, iat (Attio: GET /self). No scope required; any active token works. Safe identity/connectivity probe — connector READ test target.
Aramanızla eşleşen bir şey yok.
Attio kullanan Çözüm Şablonları
Attio ile kendi otomasyonunu görsel tasarımcıda kur.
Sıkça sorulan sorular
Attio ile neler otomatikleştirebilirim?
60 aksiyon var — örneğin: Identify (Self), List Objects, Create Object, Get Object, Update Object ve daha fazlası.
Hangi Attio olayları bir workflow başlatabilir?
9 tetikleyici — örneğin: Record Created, Record Updated, Record Deleted, List Entry Created.
Attio bir AI agent aracı olarak kullanılabilir mi?
Evet. Attio'ın her aksiyonu otomatik olarak bir AI agent aracına dönüşür — aynı pack hem workflow'larını hem agent'larını besler.
Attio entegrasyonu nasıl modellenir?
Attio sürümlü bir connector pack olarak modellenir; muhakeme gerektiren adımlar workflow'larla aynı runtime'da barınan first-party agent'lara düşer.