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 updates an existing entry in a specified list by overwriting it with new data. It is useful for scenarios where you need to completely replace the data of a list entry, such as updating contact information, inventory items, or any structured data stored in a list. For example, you can update a customer record in a CRM list by providing the list ID, entry ID, and the new data in JSON format.
Use Case Examples
- Updating a customer entry in a marketing list by providing the list UUID, entry UUID, and new contact details in JSON format.
- Overwriting an inventory item entry in a product list with updated stock and pricing information.
Properties
| Name | Meaning |
|---|---|
| List | The UUID or slug of the list to which the entry belongs. This identifies the list containing the entry to update. |
| Entry Id | The UUID of the specific list entry to update. This identifies the exact entry to overwrite. |
| Data | The new data to overwrite the existing entry with, provided as a JSON object. This contains the updated values for the entry's attributes. |
Output
JSON
json- The JSON response from the API containing the updated entry data.
Dependencies
- Requires an API key credential for authentication to the Attio API.
Troubleshooting
- Common issues include providing invalid UUIDs for the list or entry, which will result in errors from the API indicating the resource was not found.
- Malformed JSON in the Data property can cause parsing errors; ensure the JSON is valid and correctly formatted.
- Authorization errors may occur if the API key credential is missing or invalid; verify the credential setup.
Links
- Attio API Documentation - Update Entry - Official API documentation for updating a list entry in Attio.