Actions80
- Account Actions
- Clipart Actions
- Clipart Storage Actions
- Design Actions
- Font Actions
- Image Actions
- Product Actions
- Project Actions
- Project Folder Actions
- Side Actions
- Storage Actions
- Store Actions
- Template Actions
- Webhook Actions
Overview
This node integrates with the Printcart API to manage "Project Folder" resources, specifically allowing users to retrieve a list of project folders. It is useful in scenarios where you want to organize or browse collections of projects grouped into folders within the Printcart system.
A practical example use case is automating the retrieval of project folder lists for reporting, synchronization with other systems, or dynamically populating UI elements based on available project folders.
Properties
| Name | Meaning |
|---|---|
| Authentication | Method of authentication; currently supports only "API Token". |
| Limit | Maximum number of project folder results to return (minimum 10). |
| Sort | Sorting order for the results; option to sort by ascending ("asc") or descending ("desc"). |
| Sort By | Field by which to sort the project folders; defaults to "id". |
Output
The node outputs a JSON array containing the list of project folders retrieved from the Printcart API. Each item in the array represents a project folder object as returned by the API, including its properties such as folder ID, associated project ID, and other metadata.
No binary data output is produced by this operation.
Dependencies
- Requires an API token credential for authenticating requests to the Printcart API.
- The node makes HTTP requests to the Printcart API endpoints over HTTPS.
- No additional environment variables or external services are required beyond the API token.
Troubleshooting
Common Issues:
- Invalid or missing API token will cause authentication failures.
- Requesting fewer than 10 items for the limit property may be rejected due to minimum value constraints.
- Incorrect sorting parameters may default silently to predefined values.
Error Messages:
- Authentication errors typically indicate invalid or expired API tokens; ensure the token is valid and correctly configured.
- HTTP request failures may occur if the API endpoint is unreachable or network issues exist.
- If the node throws errors related to parameter retrieval, verify that all required input properties are set correctly.
Resolution Tips:
- Double-check the API token credential configuration.
- Ensure the "Limit" property is set to 10 or higher.
- Use valid sorting options ("asc" or "desc") and valid fields for "Sort By".
- Enable "Continue On Fail" in the node settings to handle partial failures gracefully.
Links and References
- Printcart API Documentation (assumed official API docs)
- n8n documentation on HTTP Request Node for understanding underlying request mechanics
- n8n community forums for troubleshooting custom nodes and API integrations