Attio icon

Attio

Interact with Attio API

Overview

This node interacts with the Attio API to list notes associated with a specified parent object and record. It is useful for retrieving a paginated list of notes, for example, fetching notes related to a specific person or entity in a CRM system. Users can specify the maximum number of notes to return, the offset for pagination, and identify the parent object and record to filter the notes accordingly.

Use Case Examples

  1. Retrieve the first 10 notes related to a specific person by setting the parent object to 'people' and providing the person's record ID.
  2. Fetch notes with pagination by setting the limit to 20 and offset to 10 to get the next set of notes after the first 10.

Properties

Name Meaning
Limit The maximum number of results to return, with a default of 10 and a maximum of 50.
Offset The number of results to skip before returning, used for pagination, defaulting to 5.
Parent Object The slug or ID of the parent object to which the notes belong, e.g., 'people'.
Parent Record Id The ID of the parent record to which the notes belong.

Output

JSON

  • json - The JSON response from the Attio API containing the list of notes and their details.

Dependencies

  • Requires an API key credential for the Attio API to authorize requests.

Troubleshooting

  • Common issues include invalid or expired API tokens leading to authorization errors. Ensure the API key credential is valid and has the necessary permissions.
  • Incorrect parent object or record IDs may result in empty responses or errors. Verify the IDs are correct and exist in the Attio system.
  • Pagination parameters (limit and offset) must be within allowed ranges; exceeding limits may cause errors or truncated results.

Links

Discussion