Tallyfy icon

Tallyfy

Interact with Tallyfy workflow automation platform

Overview

This node integrates with the Tallyfy workflow automation platform, allowing users to manage various resources such as blueprints, processes, tasks, and more. Specifically, for the Blueprint - Update operation, it updates an existing blueprint's details in a Tallyfy organization.

Typical use cases include:

  • Modifying the title or other properties of a process template (blueprint) after creation.
  • Keeping blueprints up-to-date with changing business requirements.
  • Automating blueprint maintenance within larger workflow automations.

For example, you might update a blueprint’s title to reflect a new project phase or add additional metadata fields programmatically.

Properties

Name Meaning
Blueprint ID The unique identifier of the blueprint to update.
Title The new title for the blueprint (maximum 250 characters).

Additional optional fields can be provided via an "additionalFields" collection (not listed here but supported by the node), allowing further customization of the blueprint during update.

Output

The node outputs the JSON response from the Tallyfy API representing the updated blueprint object. This typically includes all blueprint details such as its ID, title, type, status, and any other metadata returned by the API.

If multiple input items are processed, the output is an array of JSON objects corresponding to each updated blueprint.

No binary data output is produced by this operation.

Dependencies

  • Requires an API key credential for authenticating with the Tallyfy API.
  • The node uses the base URL https://go.tallyfy.com/api or a custom base URL if specified in credentials.
  • Requires the organization ID to scope API requests properly.
  • The node depends on n8n’s HTTP request helper with authentication support.

Troubleshooting

  • Invalid Blueprint ID: If the blueprint ID does not exist or is incorrect, the API will return an error. Verify the blueprint ID before running the update.
  • Authentication Errors: Ensure that the API key credential is valid and has sufficient permissions to update blueprints.
  • Title Validation: The title must not exceed 250 characters; otherwise, the API may reject the request.
  • Network Issues: Connectivity problems to the Tallyfy API endpoint will cause failures; check network access and proxy settings if applicable.
  • Continue On Fail: If enabled, errors for individual items will be captured in the output JSON under an error field instead of stopping execution.

Links and References

Discussion