Actions25
Overview
The "Get Many" operation for the Dossier resource in this node allows users to retrieve multiple dossiers (opportunities or deals) from the Whoz talent management platform by specifying a list of external IDs. This operation is useful when you need to fetch detailed information about several dossiers at once, such as for reporting, synchronization, or bulk processing scenarios.
For example, if you have a comma-separated list of dossier external IDs from another system and want to pull their current data into your workflow, this operation efficiently returns all matching dossiers in one request.
Properties
| Name | Meaning |
|---|---|
| External IDs | Comma-separated list of external dossier IDs to search for. |
| Options | Additional optional parameters: |
| Limit | Maximum number of results to return. |
| Include Removed | Whether to include soft-deleted (removed) dossiers in the results (true/false). |
| Modified Since | Only return dossiers modified since this date/time (ISO 8601 format). |
Output
The output is a JSON array where each element represents a dossier object retrieved from the Whoz platform. Each dossier object contains detailed fields describing the dossier's properties as returned by the API.
No binary data is output by this operation.
Dependencies
- Requires an active connection to the Whoz talent management platform via an OAuth2 API credential.
- The node uses the Whoz API endpoints to fetch dossier data.
- Proper configuration of the API credentials and environment (sandbox or production) is necessary.
Troubleshooting
- Missing or invalid External IDs: The operation requires at least one valid external ID. Ensure the input string is not empty and IDs are correctly formatted and separated by commas.
- API authentication errors: Verify that the OAuth2 credentials are correctly set up and have sufficient permissions.
- Rate limits or large result sets: If requesting many dossiers, consider using the "Limit" option to restrict the number of results and avoid hitting API rate limits.
- Date format issues: The "Modified Since" property must be a valid ISO 8601 datetime string; otherwise, the API may reject the request.
- Soft-deleted dossiers not appearing: If you expect removed dossiers but do not see them, ensure "Include Removed" is set to true.
Common error messages will typically relate to invalid parameters or authentication failures. Review the error message details and adjust inputs or credentials accordingly.
Links and References
- Whoz API Documentation (for detailed API endpoint info)
- n8n OAuth2 Credential Setup (for configuring OAuth2 credentials)