AACFlow

Attio

Datensätze, Notizen, Aufgaben, Listen, Kommentare und mehr in Attio CRM verwalten

Attio is a modern and flexible CRM platform built to help teams manage relationships, data, and workflows more efficiently. Attio enables organizations to create and organize custom objects (like people, companies, deals, and more), manage notes and tasks, collaborate as a team, and automate work across their relationship and data pipelines.

With Attio, you can:

  • Manage records for any object: Store and organize people, companies, or any custom objects to fit your team's needs.
  • Track, connect, and update information: Add and edit notes, comments, tasks, and linked records so your contextual data is always in sync.
  • Build and customize lists: Segment records, filter and sort with powerful queries, and build views that fit your workflow.
  • Collaborate with your team: Assign tasks, share comments, and see activities in real time.
  • Automate CRM workflows: Create, update, and read record data via API to keep your tools and teams in the loop, or trigger actions as relationships evolve.

In AACFlow, the Attio integration lets your agents programmatically query lists, fetch and manipulate records, manage entries, tasks, comments, and more—making it easy to automate CRM operations, enrich data, synchronize with other systems, or trigger workflow automations based on relationship or record events. Use these tools to ensure your CRM stays up-to-date and powerful directly from within your AACFlow projects.

Nutzungsanleitung

Connect to Attio to manage CRM records (people, companies, custom objects), notes, tasks, lists, list entries, comments, workspace members, and webhooks.

Tools

attio_list_records

Query and list records for a given object type (e.g. people, companies)

Eingabe

ParameterTypErforderlichBeschreibung
objectTypestringJaThe object type slug (e.g. people, companies)
filterstringNeinJSON filter object for querying records
sortsstringNeinJSON array of sort objects, e.g. [{"direction":"asc","attribute":"name"}]
limitnumberNeinMaximum number of records to return (default 500)
offsetnumberNeinNumber of records to skip for pagination

Ausgabe

ParameterTypBeschreibung
recordsarrayArray of Attio records
idobjectThe record identifier
workspace_idstringThe workspace ID
object_idstringThe object ID
record_idstringThe record ID
created_atstringWhen the record was created
web_urlstringURL to view the record in Attio
valuesjsonThe record attribute values
countnumberNumber of records returned

attio_get_record

Get a single record by ID from Attio

Eingabe

ParameterTypErforderlichBeschreibung
objectTypestringJaThe object type slug (e.g. people, companies)
recordIdstringJaThe ID of the record to retrieve

Ausgabe

ParameterTypBeschreibung
recordobjectAn Attio record
idobjectThe record identifier
workspace_idstringThe workspace ID
object_idstringThe object ID
record_idstringThe record ID
created_atstringWhen the record was created
web_urlstringURL to view the record in Attio
valuesjsonThe record attribute values
recordIdstringThe record ID
webUrlstringURL to view the record in Attio

attio_create_record

Create a new record in Attio for a given object type

Eingabe

ParameterTypErforderlichBeschreibung
objectTypestringJaThe object type slug (e.g. people, companies)
valuesstringJaJSON object of attribute values to set on the record

Ausgabe

ParameterTypBeschreibung
recordobjectAn Attio record
idobjectThe record identifier
workspace_idstringThe workspace ID
object_idstringThe object ID
record_idstringThe record ID
created_atstringWhen the record was created
web_urlstringURL to view the record in Attio
valuesjsonThe record attribute values
recordIdstringThe ID of the created record
webUrlstringURL to view the record in Attio

attio_update_record

Update an existing record in Attio (appends multiselect values)

Eingabe

ParameterTypErforderlichBeschreibung
objectTypestringJaThe object type slug (e.g. people, companies)
recordIdstringJaThe ID of the record to update
valuesstringJaJSON object of attribute values to update

Ausgabe

ParameterTypBeschreibung
recordobjectAn Attio record
idobjectThe record identifier
workspace_idstringThe workspace ID
object_idstringThe object ID
record_idstringThe record ID
created_atstringWhen the record was created
web_urlstringURL to view the record in Attio
valuesjsonThe record attribute values
recordIdstringThe ID of the updated record
webUrlstringURL to view the record in Attio

attio_delete_record

Delete a record from Attio

Eingabe

ParameterTypErforderlichBeschreibung
objectTypestringJaThe object type slug (e.g. people, companies)
recordIdstringJaThe ID of the record to delete

Ausgabe

ParameterTypBeschreibung
deletedbooleanWhether the record was deleted

attio_search_records

Fuzzy search for records across object types in Attio

Eingabe

ParameterTypErforderlichBeschreibung
querystringJaThe search query (max 256 characters)
objectsstringJaComma-separated object slugs to search (e.g. people,companies)
limitnumberNeinMaximum number of results (1-25, default 25)

Ausgabe

ParameterTypBeschreibung
resultsarraySearch results
recordIdstringThe record ID
objectIdstringThe object type ID
objectSlugstringThe object type slug
recordTextstringDisplay text for the record
recordImagestringImage URL for the record
countnumberNumber of results returned

attio_assert_record

Upsert a record in Attio — creates it if no match is found, updates it if a match exists

Eingabe

ParameterTypErforderlichBeschreibung
objectTypestringJaThe object type slug (e.g. people, companies)
matchingAttributestringJaThe attribute slug to match on for upsert (e.g. email_addresses for people, domains for companies)
valuesstringJaJSON object of attribute values (e.g. {"email_addresses":[{"email_address":"test@example.com"}]})

Ausgabe

ParameterTypBeschreibung
recordobjectThe upserted record
idobjectThe record identifier
workspace_idstringThe workspace ID
object_idstringThe object ID
record_idstringThe record ID
created_atstringWhen the record was created
web_urlstringURL to view the record in Attio
valuesjsonThe record attribute values
recordIdstringThe record ID
webUrlstringURL to view the record in Attio

attio_list_notes

List notes in Attio, optionally filtered by parent record

Eingabe

ParameterTypErforderlichBeschreibung
parentObjectstringNeinObject type slug to filter notes by (e.g. people, companies)
parentRecordIdstringNeinRecord ID to filter notes by
limitnumberNeinMaximum number of notes to return (default 10, max 50)
offsetnumberNeinNumber of notes to skip for pagination

Ausgabe

ParameterTypBeschreibung
notesarrayArray of notes
noteIdstringThe note ID
parentObjectstringThe parent object slug
parentRecordIdstringThe parent record ID
titlestringThe note title
contentPlaintextstringThe note content as plaintext
contentMarkdownstringThe note content as markdown
meetingIdstringThe linked meeting ID
tagsarrayTags on the note
typestringThe tag type (e.g. workspace-member)
workspaceMemberIdstringThe workspace member ID of the tagger
createdByActorobjectThe actor who created the note
typestringThe actor type (e.g. workspace-member, api-token, system)
idstringThe actor ID
createdAtstringWhen the note was created
countnumberNumber of notes returned

attio_get_note

Get a single note by ID from Attio

Eingabe

ParameterTypErforderlichBeschreibung
noteIdstringJaThe ID of the note to retrieve

Ausgabe

ParameterTypBeschreibung
noteIdstringThe note ID
parentObjectstringThe parent object slug
parentRecordIdstringThe parent record ID
titlestringThe note title
contentPlaintextstringThe note content as plaintext
contentMarkdownstringThe note content as markdown
meetingIdstringThe linked meeting ID
tagsarrayTags on the note
typestringThe tag type (e.g. workspace-member)
workspaceMemberIdstringThe workspace member ID of the tagger
createdByActorobjectThe actor who created the note
typestringThe actor type (e.g. workspace-member, api-token, system)
idstringThe actor ID
createdAtstringWhen the note was created

attio_create_note

Create a note on a record in Attio

Eingabe

ParameterTypErforderlichBeschreibung
parentObjectstringJaThe parent object type slug (e.g. people, companies)
parentRecordIdstringJaThe parent record ID to attach the note to
titlestringJaThe note title
contentstringJaThe note content
formatstringNeinContent format: plaintext or markdown (default plaintext)
createdAtstringNeinBackdate the note creation time (ISO 8601 format)
meetingIdstringNeinAssociate the note with a meeting ID

Ausgabe

ParameterTypBeschreibung
noteIdstringThe note ID
parentObjectstringThe parent object slug
parentRecordIdstringThe parent record ID
titlestringThe note title
contentPlaintextstringThe note content as plaintext
contentMarkdownstringThe note content as markdown
meetingIdstringThe linked meeting ID
tagsarrayTags on the note
typestringThe tag type (e.g. workspace-member)
workspaceMemberIdstringThe workspace member ID of the tagger
createdByActorobjectThe actor who created the note
typestringThe actor type (e.g. workspace-member, api-token, system)
idstringThe actor ID
createdAtstringWhen the note was created

attio_delete_note

Delete a note from Attio

Eingabe

ParameterTypErforderlichBeschreibung
noteIdstringJaThe ID of the note to delete

Ausgabe

ParameterTypBeschreibung
deletedbooleanWhether the note was deleted

attio_list_tasks

List tasks in Attio, optionally filtered by record, assignee, or completion status

Eingabe

ParameterTypErforderlichBeschreibung
linkedObjectstringNeinObject type slug to filter tasks by (requires linkedRecordId)
linkedRecordIdstringNeinRecord ID to filter tasks by (requires linkedObject)
assigneestringNeinAssignee email or member ID to filter by
isCompletedbooleanNeinFilter by completion status
sortstringNeinSort order: created_at:asc or created_at:desc
limitnumberNeinMaximum number of tasks to return (default 500)
offsetnumberNeinNumber of tasks to skip for pagination

Ausgabe

ParameterTypBeschreibung
tasksarrayArray of tasks
taskIdstringThe task ID
contentstringThe task content
deadlineAtstringThe task deadline
isCompletedbooleanWhether the task is completed
linkedRecordsarrayRecords linked to this task
targetObjectIdstringThe linked object ID
targetRecordIdstringThe linked record ID
assigneesarrayTask assignees
typestringThe assignee actor type (e.g. workspace-member)
idstringThe assignee actor ID
createdByActorobjectThe actor who created this task
typestringThe actor type (e.g. workspace-member, api-token, system)
idstringThe actor ID
createdAtstringWhen the task was created
countnumberNumber of tasks returned

attio_get_task

Get a single task by ID from Attio

Eingabe

ParameterTypErforderlichBeschreibung
taskIdstringJaThe ID of the task to retrieve

Ausgabe

ParameterTypBeschreibung
taskIdstringThe task ID
contentstringThe task content
deadlineAtstringThe task deadline
isCompletedbooleanWhether the task is completed
linkedRecordsarrayRecords linked to this task
targetObjectIdstringThe linked object ID
targetRecordIdstringThe linked record ID
assigneesarrayTask assignees
typestringThe assignee actor type (e.g. workspace-member)
idstringThe assignee actor ID
createdByActorobjectThe actor who created this task
typestringThe actor type (e.g. workspace-member, api-token, system)
idstringThe actor ID
createdAtstringWhen the task was created

attio_create_task

Create a task in Attio

Eingabe

ParameterTypErforderlichBeschreibung
contentstringJaThe task content (max 2000 characters)
deadlineAtstringNeinDeadline in ISO 8601 format (e.g. 2024-12-01T15:00:00.000Z)
isCompletedbooleanNeinWhether the task is completed (default false)
linkedRecordsstringNeinJSON array of linked records (e.g. [{"target_object":"people","target_record_id":"..."}])
assigneesstringNeinJSON array of assignees (e.g. [{"referenced_actor_type":"workspace-member","referenced_actor_id":"..."}])

Ausgabe

ParameterTypBeschreibung
taskIdstringThe task ID
contentstringThe task content
deadlineAtstringThe task deadline
isCompletedbooleanWhether the task is completed
linkedRecordsarrayRecords linked to this task
targetObjectIdstringThe linked object ID
targetRecordIdstringThe linked record ID
assigneesarrayTask assignees
typestringThe assignee actor type (e.g. workspace-member)
idstringThe assignee actor ID
createdByActorobjectThe actor who created this task
typestringThe actor type (e.g. workspace-member, api-token, system)
idstringThe actor ID
createdAtstringWhen the task was created

attio_update_task

Update a task in Attio (deadline, completion status, linked records, assignees)

Eingabe

ParameterTypErforderlichBeschreibung
taskIdstringJaThe ID of the task to update
deadlineAtstringNeinNew deadline in ISO 8601 format
isCompletedbooleanNeinWhether the task is completed
linkedRecordsstringNeinJSON array of linked records
assigneesstringNeinJSON array of assignees

Ausgabe

ParameterTypBeschreibung
taskIdstringThe task ID
contentstringThe task content
deadlineAtstringThe task deadline
isCompletedbooleanWhether the task is completed
linkedRecordsarrayRecords linked to this task
targetObjectIdstringThe linked object ID
targetRecordIdstringThe linked record ID
assigneesarrayTask assignees
typestringThe assignee actor type (e.g. workspace-member)
idstringThe assignee actor ID
createdByActorobjectThe actor who created this task
typestringThe actor type (e.g. workspace-member, api-token, system)
idstringThe actor ID
createdAtstringWhen the task was created

attio_delete_task

Delete a task from Attio

Eingabe

ParameterTypErforderlichBeschreibung
taskIdstringJaThe ID of the task to delete

Ausgabe

ParameterTypBeschreibung
deletedbooleanWhether the task was deleted

attio_list_objects

List all objects (system and custom) in the Attio workspace

Eingabe

ParameterTypErforderlichBeschreibung

Ausgabe

ParameterTypBeschreibung
objectsarrayArray of objects
objectIdstringThe object ID
apiSlugstringThe API slug (e.g. people, companies)
singularNounstringSingular display name
pluralNounstringPlural display name
createdAtstringWhen the object was created
countnumberNumber of objects returned

attio_get_object

Get a single object by ID or slug

Eingabe

ParameterTypErforderlichBeschreibung
objectstringJaThe object ID or slug (e.g. people, companies)

Ausgabe

ParameterTypBeschreibung
objectIdstringThe object ID
apiSlugstringThe API slug (e.g. people, companies)
singularNounstringSingular display name
pluralNounstringPlural display name
createdAtstringWhen the object was created

attio_create_object

Create a custom object in Attio

Eingabe

ParameterTypErforderlichBeschreibung
apiSlugstringJaThe API slug for the object (e.g. projects)
singularNounstringJaSingular display name (e.g. Project)
pluralNounstringJaPlural display name (e.g. Projects)

Ausgabe

ParameterTypBeschreibung
objectIdstringThe object ID
apiSlugstringThe API slug (e.g. people, companies)
singularNounstringSingular display name
pluralNounstringPlural display name
createdAtstringWhen the object was created

attio_update_object

Update a custom object in Attio

Eingabe

ParameterTypErforderlichBeschreibung
objectstringJaThe object ID or slug to update
apiSlugstringNeinNew API slug
singularNounstringNeinNew singular display name
pluralNounstringNeinNew plural display name

Ausgabe

ParameterTypBeschreibung
objectIdstringThe object ID
apiSlugstringThe API slug (e.g. people, companies)
singularNounstringSingular display name
pluralNounstringPlural display name
createdAtstringWhen the object was created

attio_list_lists

List all lists in the Attio workspace

Eingabe

ParameterTypErforderlichBeschreibung

Ausgabe

ParameterTypBeschreibung
listsarrayArray of lists
listIdstringThe list ID
apiSlugstringThe API slug for the list
namestringThe list name
parentObjectstringThe parent object slug (e.g. people, companies)
workspaceAccessstringWorkspace-level access (e.g. full-access, read-only)
workspaceMemberAccessjsonMember-level access entries
createdByActorobjectThe actor who created the list
typestringThe actor type (e.g. workspace-member, api-token, system)
idstringThe actor ID
createdAtstringWhen the list was created
countnumberNumber of lists returned

attio_get_list

Get a single list by ID or slug

Eingabe

ParameterTypErforderlichBeschreibung
liststringJaThe list ID or slug

Ausgabe

ParameterTypBeschreibung
listIdstringThe list ID
apiSlugstringThe API slug for the list
namestringThe list name
parentObjectstringThe parent object slug (e.g. people, companies)
workspaceAccessstringWorkspace-level access (e.g. full-access, read-only)
workspaceMemberAccessjsonMember-level access entries
createdByActorobjectThe actor who created the list
typestringThe actor type (e.g. workspace-member, api-token, system)
idstringThe actor ID
createdAtstringWhen the list was created

attio_create_list

Create a new list in Attio

Eingabe

ParameterTypErforderlichBeschreibung
namestringJaThe list name
apiSlugstringNeinThe API slug for the list (auto-generated from name if omitted)
parentObjectstringJaThe parent object slug (e.g. people, companies)
workspaceAccessstringNeinWorkspace-level access: full-access, read-and-write, or read-only (omit for private)
workspaceMemberAccessstringNeinJSON array of member access entries, e.g. [{"workspace_member_id":"...","level":"read-and-write"}]

Ausgabe

ParameterTypBeschreibung
listIdstringThe list ID
apiSlugstringThe API slug for the list
namestringThe list name
parentObjectstringThe parent object slug (e.g. people, companies)
workspaceAccessstringWorkspace-level access (e.g. full-access, read-only)
workspaceMemberAccessjsonMember-level access entries
createdByActorobjectThe actor who created the list
typestringThe actor type (e.g. workspace-member, api-token, system)
idstringThe actor ID
createdAtstringWhen the list was created

attio_update_list

Update a list in Attio

Eingabe

ParameterTypErforderlichBeschreibung
liststringJaThe list ID or slug to update
namestringNeinNew name for the list
apiSlugstringNeinNew API slug for the list
workspaceAccessstringNeinNew workspace-level access: full-access, read-and-write, or read-only (omit for private)
workspaceMemberAccessstringNeinJSON array of member access entries, e.g. [{"workspace_member_id":"...","level":"read-and-write"}]

Ausgabe

ParameterTypBeschreibung
listIdstringThe list ID
apiSlugstringThe API slug for the list
namestringThe list name
parentObjectstringThe parent object slug (e.g. people, companies)
workspaceAccessstringWorkspace-level access (e.g. full-access, read-only)
workspaceMemberAccessjsonMember-level access entries
createdByActorobjectThe actor who created the list
typestringThe actor type (e.g. workspace-member, api-token, system)
idstringThe actor ID
createdAtstringWhen the list was created

attio_query_list_entries

Query entries in an Attio list with optional filter, sort, and pagination

Eingabe

ParameterTypErforderlichBeschreibung
liststringJaThe list ID or slug
filterstringNeinJSON filter object for querying entries
sortsstringNeinJSON array of sort objects (e.g. [{"attribute":"created_at","direction":"desc"}])
limitnumberNeinMaximum number of entries to return (default 500)
offsetnumberNeinNumber of entries to skip for pagination

Ausgabe

ParameterTypBeschreibung
entriesarrayArray of list entries
entryIdstringThe list entry ID
listIdstringThe list ID
parentRecordIdstringThe parent record ID
parentObjectstringThe parent object slug
createdAtstringWhen the entry was created
entryValuesjsonThe entry attribute values (dynamic per list)
countnumberNumber of entries returned

attio_get_list_entry

Get a single list entry by ID

Eingabe

ParameterTypErforderlichBeschreibung
liststringJaThe list ID or slug
entryIdstringJaThe entry ID

Ausgabe

ParameterTypBeschreibung
entryIdstringThe list entry ID
listIdstringThe list ID
parentRecordIdstringThe parent record ID
parentObjectstringThe parent object slug
createdAtstringWhen the entry was created
entryValuesjsonThe entry attribute values (dynamic per list)

attio_create_list_entry

Add a record to an Attio list as a new entry

Eingabe

ParameterTypErforderlichBeschreibung
liststringJaThe list ID or slug
parentRecordIdstringJaThe record ID to add to the list
parentObjectstringJaThe object type slug of the record (e.g. people, companies)
entryValuesstringNeinJSON object of entry attribute values

Ausgabe

ParameterTypBeschreibung
entryIdstringThe list entry ID
listIdstringThe list ID
parentRecordIdstringThe parent record ID
parentObjectstringThe parent object slug
createdAtstringWhen the entry was created
entryValuesjsonThe entry attribute values (dynamic per list)

attio_update_list_entry

Update entry attribute values on an Attio list entry (appends multiselect values)

Eingabe

ParameterTypErforderlichBeschreibung
liststringJaThe list ID or slug
entryIdstringJaThe entry ID to update
entryValuesstringJaJSON object of entry attribute values to update

Ausgabe

ParameterTypBeschreibung
entryIdstringThe list entry ID
listIdstringThe list ID
parentRecordIdstringThe parent record ID
parentObjectstringThe parent object slug
createdAtstringWhen the entry was created
entryValuesjsonThe entry attribute values (dynamic per list)

attio_delete_list_entry

Remove an entry from an Attio list

Eingabe

ParameterTypErforderlichBeschreibung
liststringJaThe list ID or slug
entryIdstringJaThe entry ID to delete

Ausgabe

ParameterTypBeschreibung
deletedbooleanWhether the entry was deleted

attio_list_members

List all workspace members in Attio

Eingabe

ParameterTypErforderlichBeschreibung

Ausgabe

ParameterTypBeschreibung
membersarrayArray of workspace members
memberIdstringThe workspace member ID
firstNamestringFirst name
lastNamestringLast name
avatarUrlstringAvatar URL
emailAddressstringEmail address
accessLevelstringAccess level (admin, member, suspended)
createdAtstringWhen the member was added
countnumberNumber of members returned

attio_get_member

Get a single workspace member by ID

Eingabe

ParameterTypErforderlichBeschreibung
memberIdstringJaThe workspace member ID

Ausgabe

ParameterTypBeschreibung
memberIdstringThe workspace member ID
firstNamestringFirst name
lastNamestringLast name
avatarUrlstringAvatar URL
emailAddressstringEmail address
accessLevelstringAccess level (admin, member, suspended)
createdAtstringWhen the member was added

attio_create_comment

Create a comment on a list entry in Attio

Eingabe

ParameterTypErforderlichBeschreibung
contentstringJaThe comment content
formatstringNeinContent format: plaintext or markdown (default plaintext)
authorTypestringJaAuthor type (e.g. workspace-member)
authorIdstringJaAuthor workspace member ID
liststringJaThe list ID or slug the entry belongs to
entryIdstringJaThe entry ID to comment on
threadIdstringNeinThread ID to reply to (omit to start a new thread)
createdAtstringNeinBackdate the comment (ISO 8601 format)

Ausgabe

ParameterTypBeschreibung
commentIdstringThe comment ID
threadIdstringThe thread ID
contentPlaintextstringThe comment content as plaintext
authorobjectThe comment author
typestringThe actor type (e.g. workspace-member, api-token, system)
idstringThe actor ID
entryobjectThe list entry this comment is on
listIdstringThe list ID
entryIdstringThe entry ID
recordobjectThe record this comment is on
objectIdstringThe object ID
recordIdstringThe record ID
resolvedAtstringWhen the thread was resolved
resolvedByobjectWho resolved the thread
typestringThe actor type (e.g. workspace-member, api-token, system)
idstringThe actor ID
createdAtstringWhen the comment was created

attio_get_comment

Get a single comment by ID from Attio

Eingabe

ParameterTypErforderlichBeschreibung
commentIdstringJaThe comment ID

Ausgabe

ParameterTypBeschreibung
commentIdstringThe comment ID
threadIdstringThe thread ID
contentPlaintextstringThe comment content as plaintext
authorobjectThe comment author
typestringThe actor type (e.g. workspace-member, api-token, system)
idstringThe actor ID
entryobjectThe list entry this comment is on
listIdstringThe list ID
entryIdstringThe entry ID
recordobjectThe record this comment is on
objectIdstringThe object ID
recordIdstringThe record ID
resolvedAtstringWhen the thread was resolved
resolvedByobjectWho resolved the thread
typestringThe actor type (e.g. workspace-member, api-token, system)
idstringThe actor ID
createdAtstringWhen the comment was created

attio_delete_comment

Delete a comment in Attio (if head of thread, deletes entire thread)

Eingabe

ParameterTypErforderlichBeschreibung
commentIdstringJaThe comment ID to delete

Ausgabe

ParameterTypBeschreibung
deletedbooleanWhether the comment was deleted

attio_list_threads

List comment threads in Attio, optionally filtered by record or list entry

Eingabe

ParameterTypErforderlichBeschreibung
recordIdstringNeinFilter by record ID (requires object)
objectstringNeinObject slug to filter by (requires recordId)
entryIdstringNeinFilter by list entry ID (requires list)
liststringNeinList ID or slug to filter by (requires entryId)
limitnumberNeinMaximum number of threads to return (max 50)
offsetnumberNeinNumber of threads to skip for pagination

Ausgabe

ParameterTypBeschreibung
threadsarrayArray of threads
threadIdstringThe thread ID
commentsarrayComments in the thread
commentIdstringThe comment ID
contentPlaintextstringComment content
authorobjectComment author
typestringActor type
idstringActor ID
createdAtstringWhen the comment was created
createdAtstringWhen the thread was created
countnumberNumber of threads returned

attio_get_thread

Get a single comment thread by ID from Attio

Eingabe

ParameterTypErforderlichBeschreibung
threadIdstringJaThe thread ID

Ausgabe

ParameterTypBeschreibung
threadIdstringThe thread ID
commentsarrayComments in the thread
typestringThe actor type (e.g. workspace-member, api-token, system)
idstringThe actor ID
createdAtstringWhen the thread was created

attio_list_webhooks

List all webhooks in the Attio workspace

Eingabe

ParameterTypErforderlichBeschreibung
limitnumberNeinMaximum number of webhooks to return
offsetnumberNeinNumber of webhooks to skip for pagination

Ausgabe

ParameterTypBeschreibung
webhooksarrayArray of webhooks
webhookIdstringThe webhook ID
targetUrlstringThe webhook target URL
subscriptionsarrayEvent subscriptions
eventTypestringThe event type (e.g. record.created)
filterjsonOptional event filter
statusstringWebhook status (active, degraded, inactive)
createdAtstringWhen the webhook was created
countnumberNumber of webhooks returned

attio_get_webhook

Get a single webhook by ID from Attio

Eingabe

ParameterTypErforderlichBeschreibung
webhookIdstringJaThe webhook ID

Ausgabe

ParameterTypBeschreibung
webhookIdstringThe webhook ID
targetUrlstringThe webhook target URL
subscriptionsarrayEvent subscriptions
eventTypestringThe event type (e.g. record.created)
filterjsonOptional event filter
statusstringWebhook status (active, degraded, inactive)
createdAtstringWhen the webhook was created

attio_create_webhook

Create a webhook in Attio to receive event notifications

Eingabe

ParameterTypErforderlichBeschreibung
targetUrlstringJaThe HTTPS URL to receive webhook events
subscriptionsstringJaJSON array of subscriptions (e.g. [{"event_type":"record.created","filter":{"object_id":"..."}}])

Ausgabe

ParameterTypBeschreibung
webhookIdstringThe webhook ID
targetUrlstringThe webhook target URL
subscriptionsarrayEvent subscriptions
eventTypestringThe event type (e.g. record.created)
filterjsonOptional event filter
statusstringWebhook status (active, degraded, inactive)
createdAtstringWhen the webhook was created
secretstringThe webhook signing secret (only returned on creation)

attio_update_webhook

Update a webhook in Attio (target URL and/or subscriptions)

Eingabe

ParameterTypErforderlichBeschreibung
webhookIdstringJaThe webhook ID to update
targetUrlstringNeinHTTPS target URL for webhook delivery
subscriptionsstringNeinJSON array of subscriptions, e.g. [{"event_type":"note.created"}]

Ausgabe

ParameterTypBeschreibung
webhookIdstringThe webhook ID
targetUrlstringThe webhook target URL
subscriptionsarrayEvent subscriptions
eventTypestringThe event type (e.g. record.created)
filterjsonOptional event filter
statusstringWebhook status (active, degraded, inactive)
createdAtstringWhen the webhook was created

attio_delete_webhook

Delete a webhook from Attio

Eingabe

ParameterTypErforderlichBeschreibung
webhookIdstringJaThe webhook ID to delete

Ausgabe

ParameterTypBeschreibung
deletedbooleanWhether the webhook was deleted

On this page

Heute mit dem Aufbau beginnen
Über 100 000 Entwickler vertrauen uns.
Die SaaS-Plattform zum Aufbau von KI-Agenten und für Ihre agentische Belegschaft.
Loslegen