Actions57
- Objects Actions
- Attributes Actions
- List Attributes
- Get Attribute
- Update Attribute
- GET target/identifier/attributes/attribute/options
- POST target/identifier/attributes/attribute/options
- PATCH target/identifier/attributes/attribute/options/option
- POST target/identifier/attributes/attribute/statuses
- Create Attribute
- GET target/identifier/attributes/attribute/statuses
- PATCH target/identifier/attributes/attribute/statuses/status
- Entries Actions
- Records Actions
- Lists Actions
- Meta Actions
- Workspace Members Actions
- Notes Actions
- Tasks Actions
- Webhooks Actions
- Threads Actions
- Comments Actions
Overview
This node interacts with the Attio API to update a specific record by appending data to it. It is useful in scenarios where you want to add or update certain fields of an existing record without overwriting the entire record. For example, appending new values to a contact's attributes or adding additional information to a database entry.
Use Case Examples
- Appending new text and multi-select options to a record's attributes in a CRM system.
- Updating a record with additional metadata without losing existing data.
Properties
| Name | Meaning |
|---|---|
| Object | A UUID or slug of the object the record belongs to. |
| Record Id | A UUID of the record to update. |
| Data | The JSON data containing the values to append to the record. |
Output
JSON
json- The JSON response from the Attio API after updating the record.
Dependencies
- Requires an API key credential for Attio API authentication.
Troubleshooting
- Ensure the Object and Record Id are valid UUIDs or slugs recognized by the Attio API.
- The Data property must be valid JSON; invalid JSON will cause parsing errors.
- Authorization errors may occur if the API key is missing or invalid; verify credentials are correctly set.
- Network or API endpoint errors can happen if the URL or method is incorrect; ensure the operation is correctly configured.
Links
- Attio API Documentation - Update Record - Official documentation for updating records via the Attio API.