Actions11
Overview
The "Pageview - Get Many" operation in this node retrieves multiple pageview records associated with a specific prospect from the ProspectPro API. This is useful for analyzing user behavior by fetching all pageviews tied to a prospect's ID, enabling insights into which pages a prospect has visited.
Common scenarios include:
- Marketing teams tracking prospect engagement on a website.
- Sales teams reviewing detailed browsing history of leads.
- Data analysts aggregating pageview data for reporting or segmentation.
For example, you can input a prospect's unique ID and retrieve all their pageviews to understand their interests or tailor follow-up communications.
Properties
| Name | Meaning |
|---|---|
| Prospect ID | The unique identifier of the prospect whose pageviews you want to retrieve. |
| Detailed Output | Whether to return detailed output including metadata such as the total number of pageviews found. If enabled, the response returns a single item with summary details instead of an array of pageview items. |
Output
The node outputs JSON data representing the pageviews retrieved from the ProspectPro API for the specified prospect ID.
- When Detailed Output is disabled (default), the output is an array of pageview objects, each representing a single pageview event.
- When Detailed Output is enabled, the output contains a single object with summary information such as the total count of pageviews.
No binary data output is involved in this operation.
Dependencies
- Requires an active connection to the ProspectPro API via an API key credential configured in n8n.
- The base URL used for requests is
https://api.prospectpro.nl/v1.2. - The node depends on proper network access to the ProspectPro service.
Troubleshooting
- Missing or invalid Prospect ID: The operation requires a valid prospect ID. Ensure the ID is correctly provided; otherwise, the API will likely return an error or empty results.
- API authentication errors: Verify that the API key credential is correctly set up and has sufficient permissions.
- Empty results: If no pageviews are returned, confirm that the prospect ID exists and that there are pageviews recorded for it.
- Detailed Output confusion: Enabling detailed output changes the response structure from an array to a single summary object. Adjust downstream processing accordingly.
Links and References
- ProspectPro API Documentation (assumed official docs for further details)
- n8n documentation on creating custom nodes