Actions83
- 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 various resources related to print-on-demand projects, stores, products, designs, and more. Specifically, for the Project Folder resource with the Delete Project Folder operation, it allows users to delete a project folder identified by a storage ID.
Common scenarios where this node is beneficial include:
- Automating the cleanup of project folders in Printcart when they are no longer needed.
- Managing project organization by programmatically removing obsolete or empty folders.
- Integrating folder deletion into larger workflows that handle project lifecycle management.
Example use case:
- A user wants to delete a specific project folder from their Printcart account as part of an automated workflow that archives completed projects and cleans up associated folders.
Properties
| Name | Meaning |
|---|---|
| Authentication | Method of authentication; currently supports "API Token" for accessing the Printcart API. |
| Storage ID | The unique identifier of the storage (project folder) to be deleted. This is required. |
Output
The node outputs JSON data representing the response from the Printcart API after attempting to delete the specified project folder. Typically, this will include confirmation of deletion or error details if the operation failed.
No binary data output is involved in this operation.
Dependencies
- Requires an active API token credential for authenticating requests to the Printcart API.
- The node makes HTTP requests to
https://api.printcart.com/v1/project-folder/{storageId}endpoint using DELETE method. - Proper network access to the Printcart API service is necessary.
Troubleshooting
- Invalid or missing Storage ID: Ensure the Storage ID property is correctly set and corresponds to an existing project folder.
- Authentication errors: Verify that the provided API token is valid and has sufficient permissions to delete project folders.
- Network issues: Confirm that the n8n instance can reach the Printcart API endpoint without firewall or proxy restrictions.
- API errors: If the API returns errors (e.g., folder not found, permission denied), check the exact error message in the node output and adjust parameters or credentials accordingly.
- Continue on Fail: If enabled, the node will continue processing other items even if one deletion fails, returning error details per item.
Links and References
- Printcart API Documentation (general reference for endpoints and authentication)
- n8n documentation on HTTP Request Node for understanding how API calls are made within nodes