N8N Tools - Pinterest Enhanced icon

N8N Tools - Pinterest Enhanced

Comprehensive Pinterest API v5 integration for N8N workflows

Overview

The "Delete Pin" operation in the Pinterest Enhanced node allows users to remove a specific pin from their Pinterest account using its unique Pin ID. This operation is useful for managing and cleaning up pins that are no longer relevant, outdated, or mistakenly created. For example, marketers or content managers can automate the removal of promotional pins after a campaign ends or delete pins that violate content guidelines.

Properties

Name Meaning
Pin ID The unique identifier of the pin to be deleted.
Include Private Metrics Whether to include private metrics in responses (not applicable for delete but available generally).
Custom Fields Comma-separated list of custom fields to include in responses (not applicable for delete but available generally).

Note: For the Delete Pin operation, only the Pin ID property is required and used.

Output

The output JSON contains the response from the Pinterest API after attempting to delete the specified pin. Typically, this will be an object indicating success or failure of the deletion request. The exact structure depends on the Pinterest API's delete endpoint response but usually includes status confirmation.

This node does not output binary data for the Delete Pin operation.

Example output JSON might look like:

{
  "success": true,
  "message": "Pin deleted successfully"
}

or, in case of error, an error message will be thrown or returned depending on the node's error handling settings.

Dependencies

  • Requires an active subscription and valid API key credential for the external N8N Tools API service.
  • Requires Pinterest OAuth2 authentication credentials to access the Pinterest API.
  • The node internally uses the Pinterest API v5 via the N8N Tools API proxy.
  • No additional environment variables are explicitly required beyond these credentials.

Troubleshooting

  • Invalid API Key or Subscription: If the node throws errors related to invalid subscription or API key, verify that the API key credential is correct and active.
  • Pin Not Found: If the provided Pin ID does not exist or is incorrect, the Pinterest API will return an error. Double-check the Pin ID value.
  • Insufficient Permissions: Deleting a pin requires appropriate permissions on the Pinterest account. Ensure the OAuth2 credentials have the necessary scopes.
  • Network Issues: Connectivity problems with the N8N Tools API or Pinterest API may cause failures. Check network connectivity and API service status.
  • Error Handling: If the node is set to continue on fail, errors will be returned as part of the output; otherwise, execution will stop on error.

Links and References

Discussion