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 "Get Me" operation under the "Users" resource in this Pinterest Enhanced node retrieves information about the authenticated Pinterest user. This operation is useful when you want to obtain details about the current user's profile, such as their username, profile data, or other available fields.
Practical examples include:
- Automatically fetching the authenticated user's profile info to personalize workflows.
- Using the user data to conditionally branch workflow logic based on user attributes.
- Integrating with other services that require the Pinterest user ID or profile details.
Properties
| Name | Meaning |
|---|---|
| Include Private Metrics | Boolean flag to include private metrics in the response (requires elevated access). |
| Custom Fields | Comma-separated list of custom fields to include in the response for additional details. |
Output
The output JSON contains the authenticated user's profile information as returned by the Pinterest API. The exact structure depends on the fields requested and may include standard user profile properties such as username, account type, profile image, and optionally private metrics if enabled and permitted.
No binary data output is produced by this operation.
Example output JSON snippet (simplified):
{
"id": "user_id",
"username": "user_name",
"first_name": "First",
"last_name": "Last",
"profile_image": {
"url": "https://..."
},
"metrics": {
// private or public metrics if requested and allowed
}
}
Dependencies
- Requires an active subscription and a valid API key credential for the external N8N Tools API service.
- Requires OAuth2 authentication credentials for Pinterest API access.
- The node internally uses multiple API wrapper classes but for this operation specifically relies on the Pinterest API client instance.
Troubleshooting
- Invalid subscription or API key error: If you receive errors indicating invalid subscription or API key, verify your API key credential and subscription status with the external N8N Tools API provider.
- Permission errors when including private metrics: Including private metrics requires elevated access; ensure your Pinterest account and API credentials have the necessary permissions.
- Empty or incomplete user data: Check that the OAuth2 token is valid and has the required scopes to access user profile information.
- Network or timeout issues: Ensure stable internet connectivity and that the external APIs are reachable.