TeleFlow icon

TeleFlow

Interact with TeleFlow API

Overview

This node interacts with the TeleFlow API to manage various resources, including tariffs. Specifically, the Update Tariff operation allows users to modify an existing tariff resource by specifying its unique ID and the fields to update. This is useful in scenarios where tariff details need to be changed dynamically, such as updating pricing plans or modifying tariff attributes in a telecom billing system.

Practical examples include:

  • Updating the name or parameters of a tariff after a pricing change.
  • Adjusting tariff configurations based on new business rules or promotions.

Properties

Name Meaning
ID The unique identifier of the tariff resource to update. Required for the update operation.
Fields A collection of field-value pairs representing the specific properties of the tariff to update. You add multiple fields, each with a name and corresponding value.

Output

The output is a JSON object representing the updated tariff resource as returned by the TeleFlow API. It contains all the current properties of the tariff after the update has been applied.

No binary data output is produced by this operation.

Dependencies

  • Requires an active connection to the TeleFlow API.
  • Needs an API authentication token credential configured in n8n (referred generically as "an API key credential").
  • The base URL for the TeleFlow API must be set in the node credentials.

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 you provide a valid tariff ID.
  • API Request Failures: Network issues or invalid credentials can cause HTTP request failures. Verify your API key and network connectivity.
  • Invalid Field Names: Providing incorrect or unsupported field names in the "Fields" collection may result in API errors. Confirm field names are valid according to the TeleFlow API documentation.

Links and References

Discussion