TeleFlow icon

TeleFlow

Interact with TeleFlow API

Overview

The node interacts with the TeleFlow API to perform various operations on different resources. Specifically, for the "Feature Code" resource with the "Get Many" operation, it retrieves multiple feature code records from the TeleFlow system. This is useful when you want to fetch a list of feature codes, optionally filtered by specific fields.

Common scenarios include:

  • Retrieving all feature codes available in the system.
  • Filtering feature codes based on certain attributes (e.g., name or other custom fields).
  • Integrating TeleFlow feature codes data into workflows for reporting or further processing.

Example: You might use this node to get all feature codes that match certain criteria and then process them downstream in your workflow.

Properties

Name Meaning
Fields A collection of field-value pairs to filter the request. You can specify multiple fields to narrow down the query results. For example, you could filter by "name" or any other supported field.

The "Fields" property allows adding multiple filters as key-value pairs to customize which feature codes are returned.

Output

The output is an array of JSON objects representing the feature codes retrieved from the TeleFlow API. Each object corresponds to a feature code record with its properties as returned by the API.

The json output field contains the full response data for each feature code matching the query.

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 or invalid API credentials: Ensure the API key and base URL are correctly set in the node credentials.
  • Empty or no results returned: Check the filter fields provided; incorrect or overly restrictive filters may return no data.
  • ID required errors: Although not applicable for "Get Many," other operations require an ID parameter; ensure it is provided when needed.
  • HTTP request failures: Network issues or API downtime can cause errors; verify connectivity and API status.
  • Continue on Fail: If enabled, errors will be captured in the output JSON under an error property instead of stopping execution.

Links and References

Discussion