N8N Tools - Pinterest Enhanced icon

N8N Tools - Pinterest Enhanced

Comprehensive Pinterest API v5 integration for N8N workflows

Overview

This node provides enhanced integration with the Pinterest API v5, enabling comprehensive management and analytics of Pinterest resources within n8n workflows. Specifically, for the Advertising & Campaigns resource and the Get Campaign operation, it allows users to retrieve detailed information about a specific advertising campaign associated with a given advertising account.

Typical use cases include:

  • Fetching campaign details to monitor or report on advertising performance.
  • Integrating Pinterest campaign data into broader marketing automation workflows.
  • Automating campaign audits or synchronizing campaign metadata with other systems.

For example, a marketer could use this node to automatically pull campaign details daily and update a dashboard or trigger alerts based on campaign status changes.

Properties

Name Meaning
Campaign ID The unique identifier of the Pinterest advertising campaign to retrieve details for.

Output

The node outputs an array of JSON objects, each representing the response from the Pinterest API for the requested campaign. The json field contains the full campaign data as returned by the API, which typically includes campaign attributes such as name, status, budget, targeting, and performance metrics (depending on API response).

No binary data output is produced by this operation.

Example output snippet (simplified):

{
  "id": "123456789",
  "name": "Spring Sale Campaign",
  "status": "ACTIVE",
  "budget": {
    "daily_spend_limit": 1000,
    "total_spend_limit": 10000
  },
  "start_date": "2024-01-01",
  "end_date": "2024-02-01",
  ...
}

Dependencies

  • Requires an active subscription and valid API key credential for the external service providing the Pinterest API access.
  • The node uses an internal validation call to verify the API key before executing operations.
  • Requires configuration of credentials in n8n for authenticating requests to the Pinterest API via the integrated service.
  • No additional environment variables are explicitly required beyond standard credential setup.

Troubleshooting

  • Invalid Subscription or API Key: If the node throws an error indicating invalid subscription or API key, verify that the API key credential is correctly configured and active.
  • Campaign Not Found: If the specified Campaign ID does not exist or is inaccessible under the provided Ad Account ID, the API may return an error or empty result. Double-check the IDs and permissions.
  • Permission Issues: Ensure the authenticated user has sufficient permissions to access the advertising account and campaign data.
  • Network or API Errors: Transient network issues or Pinterest API downtime can cause failures; retrying after some time may resolve these.

Links and References


This summary focuses exclusively on the Advertising & Campaigns > Get Campaign operation as requested.

Discussion