Tallyfy icon

Tallyfy

Interact with Tallyfy workflow automation platform

Overview

This node integrates with the Tallyfy workflow automation platform, allowing users to manage tasks and other resources programmatically. Specifically, the Task - Get operation retrieves detailed information about a single task by its ID within an organization.

Typical use cases include:

  • Fetching the current status and details of a specific task in a workflow.
  • Integrating Tallyfy task data into other systems or dashboards.
  • Automating follow-up actions based on task properties.

For example, you might use this node to get the details of a task assigned to a user and then send a notification if the task is overdue.

Properties

Name Meaning
Task ID The unique identifier of the task to retrieve. This is required to specify which task's details to fetch.

Output

The output is a JSON object representing the task's full details as returned by the Tallyfy API. This includes all properties of the task such as title, deadline, assignees, status, and any custom fields associated with the task.

The node does not output binary data for this operation.

Example structure (simplified):

{
  "id": "string",
  "title": "string",
  "deadline": "ISO8601 datetime string",
  "status": "string",
  "owners": {
    "users": ["userId1", "userId2"],
    "guests": ["guestEmail@example.com"],
    "groups": ["groupId1"]
  },
  ...
}

Dependencies

  • Requires an API key credential for authenticating with the Tallyfy API.
  • Needs the organization ID configured in the credentials.
  • The base URL defaults to https://go.tallyfy.com/api but can be overridden in credentials.

Troubleshooting

  • Invalid Task ID: If the provided Task ID does not exist or is incorrect, the API will return an error. Verify the Task ID is correct.
  • Authentication Errors: Ensure the API key credential is valid and has access to the specified organization.
  • Network Issues: Check connectivity to the Tallyfy API endpoint.
  • Permission Denied: The authenticated user must have permission to view the task in the organization.

If the node throws errors related to HTTP requests, inspect the error message for clues such as 401 Unauthorized or 404 Not Found.

Links and References

Discussion