Everhour icon

Everhour

Interact with Everhour API

Overview

This node interacts with the Everhour API to retrieve multiple tasks associated with a specific project. The "Get Many" operation under the "Task" resource fetches all tasks belonging to a given project ID. This is useful for scenarios where you want to list or process all tasks within a project, such as generating reports, syncing tasks with other tools, or automating task management workflows.

Practical example:
You have a project in Everhour and want to automatically pull all its tasks into another system or use them in an automation workflow to update statuses or assign resources.

Properties

Name Meaning
Project ID The unique identifier of the project from which to retrieve all tasks.

Output

The output is an array of JSON objects, each representing a single task retrieved from the specified project. Each task object contains all the details provided by the Everhour API about that task (such as task name, estimate, associated projects, etc.).

No binary data is output by this operation.

Dependencies

  • Requires an API key credential for authenticating requests to the Everhour API.
  • The node uses the Everhour API base URL configured in the credential.
  • Network access to the Everhour API endpoint is necessary.

Troubleshooting

  • Common issues:

    • Invalid or missing Project ID will cause the API request to fail or return no tasks.
    • Authentication errors if the API key credential is invalid or expired.
    • Network connectivity problems can prevent successful API calls.
  • Error messages:

    • Errors returned from the Everhour API will be propagated, often indicating issues like "Not Found" if the project ID does not exist.
    • Authentication failures typically result in 401 Unauthorized errors.
  • Resolutions:

    • Verify the Project ID is correct and exists in Everhour.
    • Ensure the API key credential is valid and has appropriate permissions.
    • Check network connectivity and proxy/firewall settings if applicable.

Links and References

Discussion