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
The "Follow User" operation in the Users resource allows you to programmatically follow a Pinterest user by their user ID or username. This node is useful for automating social engagement workflows, such as building your Pinterest network, monitoring influencers, or managing multiple accounts. For example, you could use this node to automatically follow users who match certain criteria or to integrate Pinterest user following into a broader marketing automation pipeline.
Properties
| Name | Meaning |
|---|---|
| User ID | The unique identifier or username of the Pinterest user you want to follow. |
| Include Private Metrics | (Not applicable for this operation) Optionally include private metrics if supported. |
| Custom Fields | (Not applicable for this operation) Comma-separated list of custom fields to include. |
Note: Although "Include Private Metrics" and "Custom Fields" are available properties for the Users resource, they do not affect the "Follow User" operation.
Output
The output JSON contains the response from the Pinterest API confirming the follow action. Typically, this will be an object indicating success or failure of the follow request, possibly including metadata about the followed user or the relationship status.
No binary data is output by this operation.
Example output structure:
{
"success": true,
"userId": "target_user_id",
"message": "User followed successfully"
}
(Note: Actual output depends on the Pinterest API response.)
Dependencies
- Requires an active subscription and valid API key for the external Pinterest API service accessed via the "N8N Tools API".
- Requires proper OAuth2 authentication credentials configured in n8n for Pinterest.
- The node uses the Pinterest API v5 through a helper class that abstracts API calls.
- Network connectivity to Pinterest's API endpoints is necessary.
Troubleshooting
- Invalid Credentials Error: If the node throws an error related to invalid subscription or API key, verify that your API key credential is correct and has the required permissions.
- User Not Found: If the specified User ID or username does not exist, the API will return an error. Double-check the user identifier.
- Rate Limits: Pinterest API may enforce rate limits; excessive requests might cause temporary failures.
- Permission Issues: Following users may require specific access scopes; ensure your OAuth token has the necessary permissions.
- Continue On Fail: If enabled, the node will continue processing other items even if one follow request fails, returning error details in the output.