Actions82
- Account Actions
- Account Audit Actions
- Billing Entry Actions
- Call Detail Record Actions
- Carrier Actions
- Device Actions
- Device Template Actions
- Email Template Actions
- Feature Code Actions
- File Actions
- Flow Actions
- Flow Template Actions
- LCR Actions
- Mobile SIM Actions
- Number Port Actions
- Phone Number Actions
- Provision Actions
Overview
This node integrates with the TeleFlow API to perform various operations on different resources, including "Number Port". Specifically, for the "Create" operation on the "Number Port" resource, it sends a POST request to create a new number port entry in the TeleFlow system. This is useful in telecom or VoIP management scenarios where automated provisioning or management of number porting requests is needed.
Practical examples include:
- Automatically creating number port requests when onboarding new customers.
- Integrating number port creation into larger workflows that manage phone number lifecycle.
- Streamlining telecom operations by programmatically managing number port entries.
Properties
Name | Meaning |
---|---|
Fields | A collection of field-value pairs to include in the request. You can add multiple fields specifying the name and value for each. This allows customizing the data sent when creating the number port. |
The "Fields" property supports multiple entries, each with:
- Name: The field name to include in the request.
- Value: The corresponding value for that field.
Output
The node outputs an array of JSON objects, each representing the response from the TeleFlow API for the create operation. The structure of the JSON output corresponds directly to the API's response for creating a number port, typically containing details about the newly created number port entry.
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 TeleFlow API must be configured in the credentials.
- The node uses HTTP requests with JSON payloads to communicate with the TeleFlow API.
Troubleshooting
- Missing Required Fields: If required fields for creating a number port are not provided, the API may return errors. Ensure all mandatory fields are included in the "Fields" property.
- API Authentication Errors: Invalid or missing API credentials will cause authentication failures. Verify that the API key and base URL are correctly set in the node credentials.
- Network Issues: Connectivity problems to the TeleFlow API endpoint will result in request failures. Check network access and endpoint availability.
- Error Messages: The node throws errors if required parameters like ID (for other operations) are missing. For create operation, ensure the "Fields" property is properly populated.
Links and References
- TeleFlow API Documentation (Replace with actual URL)
- n8n HTTP Request Node documentation for understanding request handling: https://docs.n8n.io/nodes/n8n-nodes-base.httpRequest/