TeleFlow icon

TeleFlow

Interact with TeleFlow API

Overview

This node interacts with the TeleFlow API to perform various operations on different resources. Specifically, for the Tariff Code resource with the Update operation, it updates an existing tariff code entry identified by its unique ID. This is useful in scenarios where you need to modify details of a tariff code dynamically within an automation workflow, such as updating pricing or classification information.

Practical example: You have a list of tariff codes and want to update their names or other attributes based on external data changes, automating the synchronization between your system and TeleFlow.

Properties

Name Meaning
ID The unique identifier of the Tariff Code resource to update. This is required.
Fields A collection of field-value pairs specifying which fields to update and their new values.

The "Fields" property allows multiple entries, each with:

  • Name: The name of the field to update.
  • Value: The new value to assign to that field.

Output

The node outputs JSON data representing the updated Tariff Code resource as returned by the TeleFlow API after the update operation. The structure corresponds to the resource's properties post-update.

No binary data output is produced by this node.

Dependencies

  • Requires an API key credential for authenticating with the TeleFlow API.
  • The base URL for the 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: If the "ID" property is not provided for the update operation, the node will throw an error stating that the ID is required. Ensure the ID is correctly set.
  • API request failures: Network issues, invalid credentials, or incorrect field names/values can cause HTTP errors. Verify API credentials and field correctness.
  • Field validation: Providing invalid or unsupported field names in the "Fields" collection may result in API errors. Confirm field names against TeleFlow API documentation.
  • Continue on Fail: If enabled, the node will continue processing subsequent items even if one fails, returning error details in the output JSON.

Links and References

Discussion