Actions52
- Records Actions
- Comments Actions
- Objects Actions
- Attributes Actions
- List Attributes
- Create Attribute
- Get Attribute
- Update Attribute
- GET target/identifier/attributes/attribute/options
- POST target/identifier/attributes/attribute/options
- PATCH target/identifier/attributes/attribute/options/option
- GET target/identifier/attributes/attribute/statuses
- POST target/identifier/attributes/attribute/statuses
- PATCH target/identifier/attributes/attribute/statuses/status
- Lists Actions
- Entries Actions
- Workspace Members Actions
- Notes Actions
- Tasks Actions
- Webhooks Actions
- Threads Actions
Overview
This node interacts with the Attio API to retrieve detailed information about a specific comment identified by its unique Comment Id (UUID). It is useful in scenarios where you need to fetch and process data related to comments within Attio, such as displaying comment details in workflows, integrating comment data into other systems, or automating responses based on comment content.
For example, you might use this node to:
- Retrieve a comment's content and metadata for analysis or reporting.
- Fetch comment details to trigger notifications or follow-up actions.
- Integrate comment information into CRM or project management tools.
Properties
| Name | Meaning |
|---|---|
| Comment Id | A UUID string that uniquely identifies the comment to be retrieved from Attio. |
Output
The node outputs JSON data representing the full details of the requested comment. This typically includes all fields returned by the Attio API for a comment resource, such as the comment text, author, timestamps, and any associated metadata.
If the node encounters an error during execution (e.g., invalid Comment Id or network issues), it outputs a JSON object containing an error field with the error message.
The node does not output binary data.
Dependencies
- Requires an API key credential for authenticating requests to the Attio API.
- The node makes HTTPS requests to the Attio API endpoint
https://api.attio.com/v2/comments/{comment_id}. - Proper configuration of the API authentication token in n8n credentials is necessary.
Troubleshooting
Common Issues:
- Invalid or missing Comment Id: Ensure the Comment Id provided is a valid UUID corresponding to an existing comment.
- Authentication errors: Verify that the API key credential is correctly configured and has sufficient permissions.
- Network or API downtime: Check internet connectivity and Attio service status.
Error Messages:
"Operation Get Comment not found for resource Comments": Indicates a misconfiguration or unsupported operation; verify the selected resource and operation.- Errors returned from the API (e.g., 404 Not Found) will appear in the output JSON under the
errorfield.
Resolution:
- Double-check input parameters.
- Confirm API credentials are valid.
- Use "Continue On Fail" option if partial processing is acceptable.
Links and References
- Attio API Documentation (for detailed API endpoints and data structures)
- n8n Documentation (for general usage and credential setup)