TeleFlow icon

TeleFlow

Interact with TeleFlow API

Overview

This node integrates with the TeleFlow API to manage various telephony-related resources. Specifically, for the Number Port resource with the Create operation, it allows users to create a new number port entry in the TeleFlow system by sending specified fields as part of the request.

Typical use cases include automating the process of requesting number porting from one carrier to another or managing number port requests programmatically within a telephony workflow. For example, a telecom service provider could use this node to initiate number porting requests automatically when onboarding new customers.

Properties

Name Meaning
Fields A collection of field-value pairs to include in the creation request. Users can add multiple fields specifying the details required by the TeleFlow API for creating a number port.

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

  • Name: The name of the field to send.
  • Value: The corresponding value for that field.

This flexible structure lets users specify any required parameters dynamically according to the API's expectations.

Output

The node outputs an array of JSON objects, each representing the response from the TeleFlow API after attempting to create a number port entry. The JSON output contains the data returned by the API, which typically includes details about the newly created number port record such as its ID, status, and any other metadata provided by TeleFlow.

No binary data output is produced by this node.

Dependencies

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

Troubleshooting

  • Missing Required Fields: If mandatory fields are not provided in the "Fields" collection, the API may reject the request. Ensure all required parameters for number port creation are included.
  • API Authentication Errors: Incorrect or missing API credentials will cause authentication failures. Verify that the API key credential is correctly configured.
  • Network Issues: Connectivity problems to the TeleFlow API endpoint will result in request failures. Check network access and base URL correctness.
  • Error Messages: The node throws errors if required parameters like IDs are missing for operations that need them. For the create operation, ensure the "Fields" property is properly populated.
  • Continue on Fail: If enabled, the node will continue processing subsequent items even if some fail, returning error messages in the output JSON under an error key.

Links and References

Discussion