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 provides an integration with Pinterest's API via the "N8N Tools - Pinterest Enhanced" service, enabling various operations across multiple Pinterest resources. Specifically for the Business Tools resource and the Update Pinterest Tag operation, it allows users to update the details of an existing Pinterest Tag by specifying its ID and new properties such as the tag name.
This node is beneficial in scenarios where businesses want to programmatically manage their Pinterest tags used for tracking conversions and user interactions on their websites. For example, a marketing team can automate updating tag names or configurations without manually accessing the Pinterest Ads Manager interface.
Properties
| Name | Meaning |
|---|---|
| Tag ID | The unique identifier of the Pinterest Tag to update. This is required. |
| Title | (Optional) New name/title for the Pinterest Tag. |
Note: The provided input properties JSON only includes Tag ID as required for the update/delete operations. The code also optionally accepts a title parameter to rename the tag during update.
Output
The node outputs an array of JSON objects corresponding to each input item processed. Each output JSON contains the response from the Pinterest API related to the updated Pinterest Tag. This typically includes the updated tag's details such as its ID, name, and status.
No binary data output is produced by this operation.
Example output snippet (conceptual):
{
"id": "123456789",
"name": "Updated Tag Name",
"status": "ACTIVE"
}
Dependencies
- Requires an active subscription and valid API key credential for the "N8N Tools API" service.
- Requires OAuth2 credentials for Pinterest API access.
- The node internally uses the "Business Tools API" client from the bundled dependencies to perform the update operation.
- Proper configuration of these credentials in n8n is necessary before using the node.
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 set up and has an active subscription for the Pinterest service.Missing or Incorrect Tag ID:
Ensure theTag IDproperty is provided and corresponds to an existing Pinterest Tag. An incorrect or missing ID will cause the API call to fail.Permission Issues:
The OAuth2 credentials must have sufficient permissions to update business tools and tags on Pinterest. Lack of permissions may result in authorization errors.API Rate Limits:
Frequent updates might hit Pinterest API rate limits. Implement error handling or retries if needed.
Links and References
If you need details about other operations or resources, feel free to ask!