Actions85
- Account Actions
- Calendar Actions
- Email Actions
- LinkedIn Actions
- Close Job Posting
- Create Job Posting
- Download Applicant Resume
- Edit Job Posting
- Endorse Skill
- Get Company Profile
- Get Hiring Project by ID
- Get Hiring Projects
- Get Inmail Balance
- Get Job Applicant
- Get Job Applicants
- Get Job Offer
- Get Job Postings
- Get Raw Data
- Perform Action on Member
- Publish Job Posting
- Search
- Search Parameters
- Solve Job Publishing Checkpoint
- Messaging Actions
- Post Actions
- User Actions
- Webhook Actions
Overview
The node interacts with the Unipile API to list comments on a specific post. It is useful for scenarios where you want to retrieve user comments from social media posts or other content managed via Unipile, enabling further processing such as analysis, moderation, or display in workflows.
For example, you might use this node to:
- Fetch all comments on a marketing post to analyze customer feedback.
- Retrieve replies to a particular comment for detailed conversation tracking.
- Paginate through large sets of comments using cursors and limits.
Properties
| Name | Meaning |
|---|---|
| Post ID | The unique identifier of the post whose comments you want to list. |
| Account ID | The identifier of the account associated with the post; used to scope the request. |
| Additional Fields | Optional parameters to refine the query: |
| - Comment ID | ID of a specific comment to get its replies instead of top-level comments. |
| - Cursor | A pagination cursor to fetch the next set of results. |
| - Limit | Maximum number of comments to return (minimum 1, default 50). |
Output
The node outputs JSON data representing the list of comments retrieved from the specified post. Each item typically includes comment details such as comment ID, author, content, timestamps, and potentially nested replies if queried by comment ID.
If the API supports it, pagination information may also be included to facilitate fetching additional pages of comments.
No binary data output is indicated.
Dependencies
- Requires an API key credential for authenticating with the Unipile API.
- The base URL for API requests is configured via credentials.
- Network access to the Unipile API endpoint is necessary.
Troubleshooting
- Missing or invalid Post ID or Account ID: The node requires these IDs to function. Ensure they are correctly provided and valid.
- API authentication errors: Verify that the API key credential is correctly set up and has sufficient permissions.
- Pagination issues: If using cursors, ensure the cursor value is valid and corresponds to the previous response.
- Rate limiting or API errors: Handle HTTP error responses gracefully; consider adding retry logic or checking API usage limits.
Links and References
- Unipile API Documentation (hypothetical link)
- n8n documentation on Using API Credentials