Actions25
Overview
This node integrates with the Whoz talent management platform, specifically allowing operations on various resources such as accounts, billing items, dossiers, talents, and tasks. For the Dossier - Get operation, it retrieves detailed information about a specific dossier (which represents an opportunity or deal) by its unique ID.
Common scenarios for this node include:
- Fetching detailed data about a particular sales opportunity or deal to use in workflows.
- Integrating dossier data into CRM or reporting systems.
- Automating updates or validations based on dossier information retrieved from Whoz.
Example: You have a workflow that triggers when a new dossier is created in your system, and you want to enrich it with additional details from Whoz by fetching the dossier data using its ID.
Properties
| Name | Meaning |
|---|---|
| Dossier ID | The unique identifier of the dossier to retrieve. This is required for the "Get" operation. |
Output
The output is a JSON object representing the dossier's data as returned by the Whoz API. It includes all dossier fields such as name, account association, workspace, budget, management details, and any other dossier-specific attributes stored in Whoz.
No binary data output is involved in this operation.
Dependencies
- Requires an API authentication token credential configured in n8n to access the Whoz API.
- The node uses the Whoz API endpoint, which varies depending on the environment (sandbox or production).
- Network connectivity to the Whoz service is necessary.
Troubleshooting
- Missing or invalid Dossier ID: The node requires a valid dossier ID; ensure this parameter is provided and correctly formatted.
- Authentication errors: If the API key or OAuth2 credentials are missing or expired, requests will fail. Verify credentials in n8n settings.
- API errors: The node wraps API calls and throws errors if the Whoz API returns failures. Check error messages for details like "dossier not found" or permission issues.
- Network issues: Connectivity problems can cause request failures; verify network access to the Whoz API endpoints.
Links and References
- Whoz API Documentation (general reference for API endpoints and data structures)
- n8n documentation on creating custom nodes