Overview
This node integrates with the Nuelink API to create new posts. It is designed for users who want to automate posting content, such as captions and media, to their Nuelink account. Typical use cases include scheduling social media posts, automating content publishing workflows, or integrating Nuelink posting into larger automation pipelines.
For example, a marketing team could use this node to automatically publish promotional posts with images and captions at specific times, or a content creator might automate sharing new media content with descriptive captions and alt text.
Properties
| Name | Meaning |
|---|---|
| Caption | The main text or caption of the post. |
| Media | URL of the media (image, video, etc.) to attach to the post. |
| Additional Fields | Optional extra settings for the post: |
| - Title | A title for the post. |
| - Alt Text | Alternative text describing the media, useful for accessibility. |
| - Share to Feed | Boolean option to share an Instagram Reel also to the feed (true/false). |
Output
The node outputs JSON data representing the response from the Nuelink API after creating the post. This typically includes details about the newly created post such as its ID, status, timestamps, and any metadata returned by the API.
There is no indication that the node outputs binary data.
Dependencies
- Requires an API key credential for authenticating with the Nuelink API.
- The base URL for API requests is
https://nuelink.com/api/v1. - The node sends POST requests to the
/pabblyendpoint to create posts. - Proper configuration of the API key credential in n8n is necessary for successful operation.
Troubleshooting
- Authentication errors: If the API key is missing, invalid, or expired, the node will fail to authenticate. Ensure the API key credential is correctly set up and valid.
- Invalid input data: Required fields like Caption must be provided; otherwise, the API may reject the request.
- Network issues: Connectivity problems can cause request failures. Verify network access to
nuelink.com. - API endpoint changes: If the Nuelink API changes the
/pabblyendpoint or request format, the node may stop working until updated. - Error messages: Typically, errors will come from the API response. Check the error message for clues, such as missing required fields or permission issues.
Links and References
- Nuelink API Documentation (assumed, please verify actual URL)
- n8n documentation on creating custom nodes