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 operation deletes a specific record from an object in the Attio system. It requires the user to specify the object (by UUID or slug) and the record ID (UUID) to be deleted. This operation is useful for managing and cleaning up data by removing unwanted or obsolete records from a given object, such as deleting a person record from a contacts database.
Use Case Examples
- Deleting a contact record from the 'people' object by providing the record's UUID.
- Removing an outdated entry from a custom object in Attio by specifying the object's slug and the record ID.
Properties
| Name | Meaning |
|---|---|
| Object | The UUID or slug of the object the record belongs to. |
| Record Id | The UUID of the record to delete. |
Output
JSON
json- The JSON response from the Attio API after attempting to delete the record, typically indicating success or failure of the deletion operation.
Dependencies
- Requires an API key credential for Attio API authentication.
Troubleshooting
- Common issues include providing an incorrect object UUID/slug or record ID, which will result in errors from the API indicating the record or object was not found.
- Authorization errors may occur if the API key credential is invalid or expired; ensure the API key is correct and has the necessary permissions.
- Network or connectivity issues can cause request failures; verify network access to the Attio API endpoint.
Links
- Attio API - Delete Record - Official Attio API documentation for deleting a record from an object.