Actions13
Overview
The node integrates with the Blinko API to manage attachments among other resources. Specifically, the Attachment - List operation retrieves a list of files (attachments) stored in Blinko. This is useful for workflows that need to fetch and process files from Blinko folders or search for specific files by name.
Common scenarios include:
- Automating file management by listing all attachments in a folder.
- Searching for files matching certain text criteria before processing or downloading them.
- Integrating Blinko attachments into broader automation pipelines, such as syncing files to cloud storage or triggering actions based on file presence.
Properties
| Name | Meaning |
|---|---|
| Return All | Whether to return all matching attachments or limit the number of results returned. |
| Limit | Maximum number of attachments to return if "Return All" is false. Range: 1 to 100. |
| Filters | Collection of filters to narrow down the list of attachments: |
| Folder | Folder path or name to list files from. |
| Search Text | Text string to search for within attachment file names. |
Output
The output is a JSON array where each item represents an attachment object retrieved from Blinko. Each attachment typically includes metadata such as filename, folder location, size, creation date, and possibly URLs or IDs needed for further operations.
If binary data is included (not explicitly shown in this code), it would represent the actual file content of attachments.
Dependencies
- Requires an API key credential for authenticating with the Blinko API.
- The node uses the Blinko API base URL and request options obtained from credentials.
- No additional external dependencies are indicated beyond the Blinko API itself.
Troubleshooting
Common issues:
- Invalid or missing API credentials will cause authentication failures.
- Specifying a non-existent folder in the filter may return empty results.
- Using "Limit" outside the allowed range (1-100) will likely cause errors or be ignored.
Error messages:
"The operation "list" is not supported!"— indicates an unsupported operation was requested; ensure "List" is selected under Attachments."The resource "attachments" is not supported!"— indicates the resource parameter is incorrect.- Network or API errors will propagate from the Blinko API; check connectivity and API status.
Resolution tips:
- Verify API credentials and permissions.
- Double-check folder names and search text inputs.
- Use "Return All" carefully to avoid large data loads.
Links and References
- Blinko API Documentation (hypothetical link, replace with actual if available)
- n8n Documentation on Creating Custom Nodes
- General info on API Authentication Best Practices
