Whoz icon

Whoz

Interact with Whoz talent management platform

Overview

This node integrates with the Whoz talent management platform, specifically allowing operations on various resources including tasks. The "Get" operation for the "Task" resource retrieves detailed information about a specific task by its unique ID. This is useful in scenarios where you need to fetch and use task details within an automation workflow, such as tracking task status, updating related records, or triggering other processes based on task data.

Practical examples:

  • Fetching a task's details to display in a dashboard.
  • Retrieving task information to update project management tools.
  • Using task data to trigger notifications or follow-up actions.

Properties

Name Meaning
Task ID The unique ID of the task to retrieve.

Output

The node outputs a JSON object representing the task details retrieved from the Whoz platform. The structure corresponds to the task entity as defined by Whoz API, typically including fields like task ID, name, description, status, due dates, and any other metadata associated with the task.

No binary data output is involved in this operation.

Dependencies

  • Requires an API authentication token configured via OAuth2 credentials for the Whoz platform.
  • The node uses the Whoz API endpoint, which varies depending on the environment (sandbox or production).
  • Proper network access to the Whoz API endpoints is necessary.

Troubleshooting

  • Common issues:

    • Invalid or missing Task ID: The node requires a valid task ID; ensure it is correctly provided.
    • Authentication errors: Verify that the OAuth2 credentials are correctly set up and have sufficient permissions.
    • Network or API errors: Check connectivity and API availability.
  • Error messages:

    • "Unknown resource: task": Indicates the resource parameter was not recognized; ensure "task" is selected.
    • "Unknown task operation: get": Means the operation parameter is invalid; confirm "get" is chosen.
    • API error responses will be passed through; check the message for details such as "Task not found" or authorization failures.

Resolving these usually involves verifying input parameters, credentials, and network conditions.

Links and References

  • Whoz API Documentation (general reference for API endpoints and data structures)
  • n8n OAuth2 Credential Setup Guide (for configuring API authentication)

Discussion