Actions87
- Users Actions
- Shopping & Catalogs Actions
- Advertising & Campaigns Actions
- Advanced Analytics Actions
- Engagement Features Actions
- Business Tools Actions
- Search & Discovery Actions
- Pins Actions
- Boards Actions
Overview
This node integrates with the Pinterest API via an enhanced API wrapper to perform various operations related to Pinterest engagement features. Specifically, for the Delete Pin Comment operation under the Engagement Features resource, it allows users to delete a specific comment from a Pinterest pin by providing the comment's ID.
This functionality is useful in scenarios where you want to automate moderation or management of comments on your Pinterest pins, such as removing inappropriate or unwanted comments programmatically within an n8n workflow.
Example use case:
- Automatically deleting spam comments from pins based on certain triggers or filters in your workflow.
- Cleaning up comments after a campaign ends without manual intervention.
Properties
| Name | Meaning |
|---|---|
| Comment ID | The unique identifier of the comment to be deleted. This is required to specify which comment should be removed from a pin. |
Output
The node outputs JSON data representing the result of the delete operation. Typically, this will include confirmation of deletion or any relevant response from the Pinterest API indicating success or failure.
Since this operation deals with deleting a comment, no binary data output is expected.
Dependencies
- Requires an active subscription and valid API key credential for the external "N8N Tools API" service that acts as a proxy/enhanced interface to Pinterest API v5.
- Requires Pinterest OAuth2 credentials to authenticate requests to Pinterest on behalf of the user.
- The node internally uses multiple API wrappers for different Pinterest resources; for this operation, it specifically uses the Engagement Features API wrapper.
- Proper configuration of these credentials in n8n is necessary before using the node.
Troubleshooting
Invalid subscription or API key error:
If the node throws an error about invalid subscription or API key, verify that the API key credential is correct and active. Check your subscription status with the external API provider.Comment not found or invalid Comment ID:
If the provided Comment ID does not exist or is incorrect, the Pinterest API may return an error. Double-check the Comment ID value.Permission errors:
Ensure that the Pinterest OAuth2 credentials have sufficient permissions to delete comments on the specified pin.Network or API downtime:
Temporary network issues or Pinterest API outages can cause failures. Retry after some time or check the API status.
Links and References
- Pinterest API v5 Documentation (general reference)
- Pinterest Engagement Features API (for comment management)
- n8n Documentation - Creating Custom Nodes
If you need details on other operations or resources, feel free to ask!