Attio
attioAttio is a fully customizable workspace for your team's relationships and workflows.
Acciones disponibles (11)
Cada acción es una operación que el agente puede ejecutar contra este conector. Haz clic en una acción para ver sus parámetros.
Create NoteATTIO_CREATE_NOTEAcciónThis tool creates a new note on a given record in attio. the note can be attached to any record type (like person, company, or deal) and includes a title and content. it requires parameters such as parent object, parent record id, title, and content, with an optional created at timestamp.
ATTIO_CREATE_NOTEAcciónThis tool creates a new note on a given record in attio. the note can be attached to any record type (like person, company, or deal) and includes a title and content. it requires parameters such as parent object, parent record id, title, and content, with an optional created at timestamp.
Parámetros de entrada
titlestringObligatorioThe title of the note
contentstringObligatorioThe content of the note
created_atstringOptional timestamp for when the note was created (ISO 8601 format)
parent_objectstringObligatorioThe object type the note is associated with. Standard object types include 'people', 'companies', 'deals', 'users', 'workspaces'.
parent_record_idstringObligatorioThe ID of the specific record within the object
Parámetros de salida
dataobjectObligatorioData from the action execution
errorstringError if any occurred during the execution of the action
successfulbooleanObligatorioWhether or not the action execution was successful or not
Create RecordATTIO_CREATE_RECORDAcciónThis tool creates a new record in attio for a specified object type (people, companies, deals, users, workspaces, etc.). it requires the object type and a values dictionary containing the attributes for the new record.
ATTIO_CREATE_RECORDAcciónThis tool creates a new record in attio for a specified object type (people, companies, deals, users, workspaces, etc.). it requires the object type and a values dictionary containing the attributes for the new record.
Parámetros de entrada
valuesobjectObligatorioThe attribute values for the new record. Note: Currency fields require 'currency_value' key, while most other fields use 'value' key.
object_typestringObligatorioThe type of object to create a record for. Standard object types include 'people', 'companies', 'deals', 'users', 'workspaces'. You can also use custom object types from your workspace.
Parámetros de salida
dataobjectObligatorioData from the action execution
errorstringError if any occurred during the execution of the action
successfulbooleanObligatorioWhether or not the action execution was successful or not
Delete NoteATTIO_DELETE_NOTEAcciónThis tool allows users to delete a specific note in attio by its id. it is implemented via delete https://api.attio.com/v2/notes/{note id} and handles note deletion by validating the provided note id. it complements attio create note functionality, providing complete note management capabilities within the attio platform.
ATTIO_DELETE_NOTEAcciónThis tool allows users to delete a specific note in attio by its id. it is implemented via delete https://api.attio.com/v2/notes/{note id} and handles note deletion by validating the provided note id. it complements attio create note functionality, providing complete note management capabilities within the attio platform.
Parámetros de entrada
note_idstringObligatorioThe ID of the note to delete
Parámetros de salida
dataobjectObligatorioData from the action execution
errorstringError if any occurred during the execution of the action
successfulbooleanObligatorioWhether or not the action execution was successful or not
Delete RecordATTIO_DELETE_RECORDAcciónThis tool allows you to delete a record from attio permanently. the deletion is irreversible, and the data will eventually be removed from the system.
ATTIO_DELETE_RECORDAcciónThis tool allows you to delete a record from attio permanently. the deletion is irreversible, and the data will eventually be removed from the system.
Parámetros de entrada
record_idstringObligatorioThe unique identifier of the record to delete
object_typestringObligatorioThe type of object to delete. Standard object types include 'people', 'companies', 'deals', 'users', 'workspaces'. You can also use custom object types from your workspace.
Parámetros de salida
dataobjectObligatorioData from the action execution
errorstringError if any occurred during the execution of the action
successfulbooleanObligatorioWhether or not the action execution was successful or not
Find RecordATTIO_FIND_RECORDAcciónThis tool allows users to find a record in attio by either its unique id or by searching using unique attributes. it provides two methods: one for directly retrieving a record by its id with the get /v2/objects/{object}/records/{record id} endpoint, and another for searching by attributes using the post /v2/objects/{object}/records/query endpoint.
ATTIO_FIND_RECORDAcciónThis tool allows users to find a record in attio by either its unique id or by searching using unique attributes. it provides two methods: one for directly retrieving a record by its id with the get /v2/objects/{object}/records/{record id} endpoint, and another for searching by attributes using the post /v2/objects/{object}/records/query endpoint.
Parámetros de entrada
limitintegerMaximum number of records to return when searching
offsetintegerNumber of records to skip for pagination
object_idstringObligatorioThe ID or slug of the object type to search in. Standard object types include 'people', 'companies', 'deals', 'users', 'workspaces'.
record_idstringThe unique ID of the record to retrieve directly
attributesobjectDictionary of attributes to search by (e.g., {'email': 'example@email.com'})
Parámetros de salida
dataobjectObligatorioData from the action execution
errorstringError if any occurred during the execution of the action
successfulbooleanObligatorioWhether or not the action execution was successful or not
Get Object DetailsATTIO_GET_OBJECTAcciónThis tool retrieves detailed information about a specific object type in attio, including all its attributes and their properties. this is useful for understanding what fields are available when creating or updating records of this type.
ATTIO_GET_OBJECTAcciónThis tool retrieves detailed information about a specific object type in attio, including all its attributes and their properties. this is useful for understanding what fields are available when creating or updating records of this type.
Parámetros de entrada
object_idstringObligatorioThe ID or slug of the object to retrieve details for. Standard object types include 'people', 'companies', 'deals', 'users', 'workspaces'.
Parámetros de salida
dataobjectObligatorioData from the action execution
errorstringError if any occurred during the execution of the action
successfulbooleanObligatorioWhether or not the action execution was successful or not
List ListsATTIO_LIST_LISTSAcciónThis tool retrieves all lists available in the attio workspace. the lists are returned sorted as they appear in the sidebar. this tool is essential for managing and navigating lists, and is a prerequisite for many list-related operations. it requires the list configuration:read permission scope.
ATTIO_LIST_LISTSAcciónThis tool retrieves all lists available in the attio workspace. the lists are returned sorted as they appear in the sidebar. this tool is essential for managing and navigating lists, and is a prerequisite for many list-related operations. it requires the list configuration:read permission scope.
Parámetros de entrada
Sin parámetros.
Parámetros de salida
dataobjectObligatorioData from the action execution
errorstringError if any occurred during the execution of the action
successfulbooleanObligatorioWhether or not the action execution was successful or not
List NotesATTIO_LIST_NOTESAcciónThis tool lists all notes associated with a specific record in attio. notes are returned in reverse chronological order (newest first).
ATTIO_LIST_NOTESAcciónThis tool lists all notes associated with a specific record in attio. notes are returned in reverse chronological order (newest first).
Parámetros de entrada
limitintegerMaximum number of notes to return
parent_objectstringObligatorioThe object type the notes are associated with. Standard object types include 'people', 'companies', 'deals', 'users', 'workspaces'.
parent_record_idstringObligatorioThe ID of the specific record to get notes for
Parámetros de salida
dataobjectObligatorioData from the action execution
errorstringError if any occurred during the execution of the action
successfulbooleanObligatorioWhether or not the action execution was successful or not
List ObjectsATTIO_LIST_OBJECTSAcciónThis tool retrieves a list of all available objects (both system-defined and user-defined) in the attio workspace. it makes a get request to the /v2/objects endpoint and returns a json response containing key metadata about each object, which is fundamental for understanding and accessing the workspace's structure.
ATTIO_LIST_OBJECTSAcciónThis tool retrieves a list of all available objects (both system-defined and user-defined) in the attio workspace. it makes a get request to the /v2/objects endpoint and returns a json response containing key metadata about each object, which is fundamental for understanding and accessing the workspace's structure.
Parámetros de entrada
Sin parámetros.
Parámetros de salida
dataobjectObligatorioData from the action execution
errorstringError if any occurred during the execution of the action
successfulbooleanObligatorioWhether or not the action execution was successful or not
List RecordsATTIO_LIST_RECORDSAcciónThis tool lists records from a specific object type in attio. it provides simple pagination support and returns records in the order they were created. for complex filtering, use the findrecord action instead. standard object types include: people, companies, deals, users, workspaces. if you get a 404 error, verify the object type exists using the list objects action first.
ATTIO_LIST_RECORDSAcciónThis tool lists records from a specific object type in attio. it provides simple pagination support and returns records in the order they were created. for complex filtering, use the findrecord action instead. standard object types include: people, companies, deals, users, workspaces. if you get a 404 error, verify the object type exists using the list objects action first.
Parámetros de entrada
limitintegerMaximum number of records to return
offsetintegerNumber of records to skip for pagination
object_typestringObligatorioThe type of object to list records for. Standard object types include 'people', 'companies', 'deals', 'users', 'workspaces'. You can also use custom object types from your workspace. Use the List Objects action to discover all available object types.
Parámetros de salida
dataobjectObligatorioData from the action execution
errorstringError if any occurred during the execution of the action
successfulbooleanObligatorioWhether or not the action execution was successful or not
Update RecordATTIO_UPDATE_RECORDAcciónThis tool updates an existing record in attio for a specified object type (people, companies, deals, users, workspaces, etc.). it uses patch to partially update only the provided fields, leaving other fields unchanged.
ATTIO_UPDATE_RECORDAcciónThis tool updates an existing record in attio for a specified object type (people, companies, deals, users, workspaces, etc.). it uses patch to partially update only the provided fields, leaving other fields unchanged.
Parámetros de entrada
valuesobjectObligatorioThe attribute values to update on the record. Note: Currency fields require 'currency_value' key, while most other fields use 'value' key.
record_idstringObligatorioThe unique identifier of the record to update
object_typestringObligatorioThe type of object to update. Standard object types include 'people', 'companies', 'deals', 'users', 'workspaces'. You can also use custom object types from your workspace.
Parámetros de salida
dataobjectObligatorioData from the action execution
errorstringError if any occurred during the execution of the action
successfulbooleanObligatorioWhether or not the action execution was successful or not