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
The node integrates with the Printcart API, enabling automation of various Printcart resources and operations. Specifically, for the Project Folder resource and the Create New Project Folder operation, this node allows users to create a new project folder within a specified storage and optionally associate it with a project.
This is useful in scenarios where you want to programmatically organize projects into folders within your Printcart environment, such as automating project management workflows, categorizing projects by client or type, or integrating Printcart project structures with other systems.
Example use case: Automatically creating a new project folder when a new client onboarding process starts, organizing all related projects under that folder for easier management.
Properties
| Name | Meaning |
|---|---|
| Authentication | Method of authentication; currently supports "API Token" |
| Storage ID | The identifier of the storage (category) where the new project folder will be created. |
| Project ID | (Optional) The identifier of the project to associate with the new project folder. |
Output
The node outputs the JSON response from the Printcart API after creating the project folder. This typically includes details about the newly created project folder such as its ID, associated storage/category ID, linked project ID, timestamps, and other metadata returned by the API.
No binary data output is involved in 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 using the provided credentials.
- No additional external dependencies are required beyond the API access.
Troubleshooting
- Authentication errors: Ensure the API token provided is valid and has sufficient permissions to create project folders.
- Missing required parameters: The
Storage IDis mandatory; omitting it will cause the API request to fail. - API endpoint errors: Network issues or incorrect API base URL could cause failures; verify connectivity and credentials.
- Error messages from API: Typically include HTTP status codes and error messages; check the message for missing or invalid fields.
- Continue on Fail: If enabled, the node will continue processing subsequent items even if one fails, returning error details in the output.
Links and References
- Printcart API Documentation (general reference for API endpoints and usage)
- n8n documentation on HTTP Request Node for understanding how API calls are made internally
- n8n community forums and support channels for troubleshooting integration issues