Actions25
Overview
The "Get Many" operation for the Talent resource in this node allows users to retrieve multiple talent records 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 talents at once, for example, to synchronize data between systems, generate reports, or perform bulk updates based on retrieved data.
Practical examples include:
- Fetching all talents associated with a set of external identifiers from an HR system.
- Retrieving talent profiles for a group of candidates or employees to analyze their status or history.
- Integrating talent data into dashboards or other applications that require batch retrieval.
Properties
| Name | Meaning |
|---|---|
| External IDs | Comma-separated list of external IDs to search for. These IDs identify the talents to retrieve. |
| Options | Collection of optional parameters: |
| Limit | Maximum number of results to return (number). |
| Include Removed | Boolean flag indicating whether to include soft-deleted (removed) talents in the results. |
Output
The output is a JSON array where each item represents a talent object retrieved from the Whoz platform. Each talent object contains detailed information about the talent as provided by the API, such as personal details, history, and other relevant fields.
No binary data output is produced 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 talent data.
- Proper configuration of the API credentials and environment (sandbox or production) is necessary.
Troubleshooting
- Missing or invalid External IDs: If the "External IDs" property is empty or malformed, the node will throw an error indicating required fields are missing. Ensure the external IDs are provided as a comma-separated string.
- API errors: Errors returned from the Whoz API (e.g., authentication failures, rate limits, or invalid requests) will be surfaced. Check your API credentials and permissions.
- Empty results: If no talents match the provided external IDs, the output will be an empty array. Verify that the external IDs are correct and exist in the Whoz system.
- Include Removed option: If you expect to see soft-deleted talents but they do not appear, ensure the "Include Removed" option is set to true.
Links and References
- Whoz Talent Management Platform (official site)
- Whoz API Documentation (for detailed API usage and capabilities)