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 list entries of a specific record within an object. It is useful for retrieving detailed data entries associated with a particular record, such as fetching all entries related to a person or entity in a database. For example, it can be used to list all communication entries or activity logs linked to a customer record in a CRM system.
Use Case Examples
- List all entries for a given record in the 'people' object to analyze customer interactions.
- Retrieve paginated entries of a record to process or display in an external application.
Properties
| Name | Meaning |
|---|---|
| Object | A UUID or slug identifying the object that the record belongs to. |
| Record Id | A UUID identifying the record whose entries are to be listed. |
| Limit | The maximum number of results to return, with a default of 10 and a maximum of 1000, used for pagination. |
| Offset | The number of results to skip before returning, used for pagination with a default of 5. |
Output
JSON
json- The JSON response from the Attio API containing the list of record entries.
Dependencies
- Requires an API key credential for Attio API authentication.
Troubleshooting
- Common issues include invalid or expired API tokens leading to authorization errors. Ensure the API key is valid and has necessary permissions.
- Incorrect or missing 'Object' or 'Record Id' parameters can cause resource not found errors. Verify these identifiers are correct UUIDs or slugs.
- Pagination parameters 'Limit' and 'Offset' must be within allowed ranges; otherwise, the API may return errors or unexpected results.
Links
- Attio API Pagination Guide - Detailed guide on how to use pagination parameters like limit and offset in Attio API requests.