Attio icon

Attio

Interact with Attio API

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

  1. List all entries for a given record in the 'people' object to analyze customer interactions.
  2. 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

Discussion