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 delete an entry from a specified list. It is useful in scenarios where you need to programmatically remove entries from lists managed in Attio, such as cleaning up outdated or incorrect data. For example, you can automate the deletion of a contact entry from a sales list when the contact is no longer relevant.
Use Case Examples
- Deleting an entry from a marketing list by specifying the list identifier and entry ID.
- Automating the removal of outdated entries from a customer list to maintain data accuracy.
Properties
| Name | Meaning |
|---|---|
| List | A UUID or slug identifying the list the entry is in. |
| Entry Id | A UUID identifying the entry to delete. |
Output
JSON
json- The JSON response from the Attio API after deleting the entry, typically confirming the deletion or providing status information.
Dependencies
- Requires an API key credential for Attio API authentication.
Troubleshooting
- Ensure the 'List' and 'Entry Id' parameters are correctly specified as UUIDs or valid slugs; incorrect values will cause the API request to fail.
- Common errors include authorization failures if the API key is invalid or missing, resulting in authentication errors.
- If the entry does not exist or has already been deleted, the API may return a not found error.
Links
- Attio API Documentation - Delete Entry - Official documentation for the Attio API endpoint to delete an entry from a list.