Attio icon

Attio

Interact with Attio API

Overview

This node interacts with the Attio API to retrieve detailed information about a specific note identified by its unique Note Id (UUID). It is useful in scenarios where you want to fetch and process data related to notes stored in Attio, such as integrating note content into workflows, syncing notes with other systems, or triggering actions based on note details.

Practical examples:

  • Automatically retrieving a note's content when a new note is created in Attio to send it via email.
  • Fetching note metadata for reporting or analytics purposes.
  • Using note details to update records in a CRM or project management tool.

Properties

Name Meaning
Note Id A UUID which identifies the note to retrieve. This is required and must be provided to specify which note to get from Attio.

Output

The node outputs JSON data representing the full details of the requested note as returned by the Attio API. The structure typically includes all properties of the note such as its content, creation date, associated entities, and metadata.

If the node encounters an error during the request, the output JSON will contain an error field with the error message.

The node does not output binary data.

Dependencies

  • Requires an API key credential for authenticating with the Attio API.
  • The node makes HTTP requests to the Attio API endpoint https://api.attio.com/v2/notes/{note_id} using the GET method.
  • Proper configuration of the API authentication token in n8n credentials is necessary.

Troubleshooting

  • Common issues:

    • Providing an invalid or malformed Note Id (not a valid UUID) will cause the API request to fail.
    • Missing or incorrect API authentication token will result in authorization errors.
    • Network connectivity issues can prevent successful API calls.
  • Error messages:

    • "Operation Get Note not found for resource Notes": Indicates a misconfiguration or unsupported operation/resource combination.
    • Errors returned from the API (e.g., 404 Not Found if the note does not exist) will be passed through in the output under the error field.
  • Resolutions:

    • Verify that the Note Id is correct and exists in Attio.
    • Ensure the API key credential is correctly set up and has sufficient permissions.
    • Check network connectivity and proxy settings if applicable.

Links and References

Discussion