Actions11
Overview
This node interacts with the ProspectPro API to retrieve multiple contact records. Specifically, the "Get Many" operation under the "Contact" resource fetches a list of contacts based on optional filtering criteria such as prospect ID and modification date. This is useful for workflows that need to synchronize or analyze contact data from ProspectPro, for example:
- Importing all contacts related to a specific prospect into a CRM.
- Fetching recently updated contacts since a given timestamp to keep data up-to-date.
- Retrieving detailed metadata about contacts when needed for reporting.
Properties
| Name | Meaning |
|---|---|
| Prospect ID | The ID of the prospect whose contacts you want to retrieve. |
| Modified Since | Retrieve only contacts modified since this specific date and time (timestamp converted internally). |
| Detailed Output | Whether to return detailed output including total number of contacts found. If true, returns one item instead of an array. |
Output
The node outputs JSON data representing the retrieved contacts. Normally, this is an array of contact objects matching the query parameters. If "Detailed Output" is enabled, the output contains a single object with additional metadata such as the total count of contacts found rather than an array.
No binary data output is indicated for this operation.
Dependencies
- Requires an API key credential for authenticating with the ProspectPro API.
- The base URL used for requests is
https://api.prospectpro.nl/v1.2. - No other external dependencies are indicated.
Troubleshooting
- Empty results: Ensure the Prospect ID is correct and that there are contacts associated with it. Also verify the "Modified Since" date is not too restrictive.
- Authentication errors: Confirm the API key credential is valid and has necessary permissions.
- Unexpected single object output: When "Detailed Output" is enabled, the node returns a single object with summary info instead of an array; adjust downstream processing accordingly.
- Date format issues: The "Modified Since" property expects a valid datetime; invalid dates may cause request failures.
Links and References
- ProspectPro API Documentation (general reference for endpoints and parameters)
- n8n documentation on HTTP Request Node for understanding API calls in workflows