TeleFlow icon

TeleFlow

Interact with TeleFlow API

Overview

This node integrates with the TeleFlow API to manage various resources, including Resellers. Specifically, the Reseller - Create operation allows users to create a new reseller entity in the TeleFlow system by sending specified fields as part of the request.

Common scenarios for this node include automating the creation of resellers when onboarding new partners or integrating TeleFlow reseller management into broader workflows. For example, a telecom company could use this node to programmatically add new resellers based on data collected from a CRM system.

Properties

Name Meaning
Fields A collection of field-value pairs to include in the create request. Users can add multiple fields specifying the properties of the reseller to be created.

The "Fields" property is a fixed collection allowing multiple entries, each with:

  • Name: The name of the field to set on the reseller.
  • Value: The value corresponding to that field.

Output

The output is an array of JSON objects, each representing the response from the TeleFlow API after creating a reseller. The structure of the JSON depends on the API's response but typically includes details of the newly created reseller such as its ID and any other returned attributes.

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 Required Fields: If required fields for creating a reseller are not provided, the API may return errors. Ensure all mandatory fields expected by the TeleFlow API for reseller creation are included.
  • API Authentication Errors: Invalid or missing API credentials will cause authentication failures. Verify that the API key credential is correctly configured.
  • HTTP Request Failures: Network issues or incorrect base URL configuration can lead to request failures. Confirm the base URL and network connectivity.
  • Error Messages: The node throws errors if required parameters like resource IDs (not applicable here for create) are missing or if the API returns an error. When continueOnFail is enabled, errors are returned in the output JSON under an error property.

Links and References

Discussion