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 within an object by overwriting it completely. It is useful when you need to replace all existing data of a record with new data. For example, updating a contact's information in a CRM system or replacing a product's details in an inventory database.
Use Case Examples
- Updating a person's contact details by specifying the object as 'people' and providing the record ID along with the new data values.
- Overwriting a record in a custom object with a new set of attribute values to ensure the record reflects the latest information.
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 new values to overwrite the record with. |
Output
JSON
json- The JSON response from the Attio API after updating the record, containing the updated record details.
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 to avoid 'record not found' errors.
- The Data property must be valid JSON; otherwise, parsing errors will occur.
- API authentication errors may occur if the API key credential is missing or invalid, resulting in authorization failures.
Links
- Attio API Documentation - Official documentation for the Attio API endpoints and usage.