TeleFlow icon

TeleFlow

Interact with TeleFlow API

Overview

This node interacts with the TeleFlow API to perform various operations on different resources, including "Flow Template". Specifically, the "Get Many" operation for the "Flow Template" resource retrieves multiple flow templates from the TeleFlow system. This is useful when you want to fetch a list of flow templates, optionally filtered by specific fields.

Common scenarios include:

  • Retrieving all available flow templates to display or process in bulk.
  • Filtering flow templates based on certain criteria (e.g., name or other attributes) to narrow down results.
  • Integrating TeleFlow flow templates data into workflows for automation or reporting.

Example: You might use this node to get all flow templates that match a particular name pattern or have specific properties set, then use that data downstream in your workflow.

Properties

Name Meaning
Fields A collection of field-value pairs to filter the request. You can specify multiple fields. Each pair consists of:
- Name: The field name to filter by.
- Value: The value to match for that field.

The "Fields" property allows you to add more specific query parameters to refine which flow templates are returned by the API.

Output

The output is an array of JSON objects representing the flow templates retrieved from the TeleFlow API. Each item corresponds to one flow template and contains its properties as returned by the API.

  • The json output field holds the full response data for each flow template.
  • No binary data output is produced by this operation.

Dependencies

  • Requires an API key credential for authenticating with the TeleFlow API.
  • The base URL for the TeleFlow API must be configured in the node credentials.
  • The node uses HTTP requests to communicate with the TeleFlow REST API endpoints.

Troubleshooting

  • Missing ID error: For operations like "get", "update", or "delete", if the required ID parameter is not provided, the node will throw an error stating "ID is required for [operation] operation".
  • API connection issues: Ensure the API key credential and base URL are correctly configured; otherwise, HTTP requests will fail.
  • Filtering fields format: When specifying fields for filtering, ensure field names and values are correct and supported by the TeleFlow API to avoid empty or unexpected results.
  • Continue on Fail: If enabled, errors during execution will be captured in the output JSON under an error property instead of stopping the workflow.

Links and References

Discussion