TeleFlow icon

TeleFlow

Interact with TeleFlow API

Overview

This node interacts with the TeleFlow API to manage various resources, including Resellers. Specifically, the Update Reseller operation allows users to modify details of an existing reseller by specifying its unique ID and the fields to update.

Common scenarios for this node include automating updates to reseller information in bulk or integrating TeleFlow reseller management into broader workflows. For example, a user might update reseller names or other attributes programmatically after receiving updated data from another system.

Properties

Name Meaning
ID The unique identifier of the reseller resource to update. This is required.
Fields A collection of field-value pairs representing the properties to update on the reseller. Each pair includes:
- Name: The name of the field to update.
- Value: The new value for that field.

Output

The node outputs JSON data representing the updated reseller resource as returned by the TeleFlow API. The structure corresponds to the updated reseller object, reflecting the changes made.

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 methods (PUT) to communicate with the TeleFlow REST API endpoints.

Troubleshooting

  • Missing ID Error: If the "ID" property is not provided, the node will throw an error stating that the ID is required for the update operation. Ensure the ID is correctly set.
  • API Request Failures: Network issues, invalid credentials, or incorrect field names can cause the API request to fail. Check the API key validity, network connectivity, and that the fields being updated exist and are allowed by the API.
  • Partial Updates: Only fields specified in the "Fields" collection are updated; omitting required fields may lead to incomplete updates or errors.
  • Continue On Fail: If enabled, the node will continue processing subsequent items even if one update fails, returning error details in the output JSON.

Links and References

Discussion