Actions145
- 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
- Report Actions
- Reseller Actions
- SIP Trunk Actions
- Tariff Actions
- Tariff Code Actions
- Tariff Profile Actions
- Tenant Actions
- Tenant Audit Actions
- Transcription Actions
- User Actions
- Voice Actions
- Voice Mail Message Actions
Overview
This node integrates with the TeleFlow API to manage various telephony-related resources. Specifically, for the Mobile SIM resource with the Create operation, it allows users to create a new Mobile SIM entry in the TeleFlow system by sending specified fields as part of the request.
Common scenarios where this node is beneficial include automating the provisioning of mobile SIM cards within a telecom management platform, integrating SIM creation into larger workflows such as device setup or user onboarding, and managing SIM inventory programmatically.
For example, a workflow could automatically create a new Mobile SIM record when a new customer signs up, passing relevant SIM details dynamically from previous nodes.
Properties
| Name | Meaning |
|---|---|
| Fields | A collection of field-value pairs to include in the creation request. Users can add multiple fields specifying the attributes of the Mobile SIM to be created. Each field consists of: - Name: The name of the field (string). - Value: The value for that field (string). |
Output
The node outputs an array of JSON objects, each representing the response from the TeleFlow API after creating a Mobile SIM. The structure of the JSON output corresponds directly to the API's response for the created Mobile SIM resource, typically including identifiers, status, and any other properties returned by the API.
No binary data output is produced by this operation.
Dependencies
- Requires an active connection to the TeleFlow API.
- Needs an API authentication token or key configured in the node credentials to authorize requests.
- The base URL for the TeleFlow API must be set in the credentials configuration.
Troubleshooting
- Missing Required Fields: If required fields for creating a Mobile SIM are not provided, the API may return validation errors. Ensure all mandatory fields are included in the "Fields" property.
- Authentication Errors: If the API key or token is invalid or missing, the node will fail to authenticate. Verify the credential configuration.
- Network Issues: Connectivity problems to the TeleFlow API endpoint will cause request failures. Check network access and base URL correctness.
- API Errors: The node throws errors if the API returns error responses. Review the error message for details and adjust input accordingly.
- ID Requirement on Other Operations: Although not applicable to Create, other operations like Get, Update, or Delete require an ID parameter; missing these will cause errors.
Links and References
- TeleFlow API Documentation (Replace with actual URL)
- n8n Documentation on HTTP Request Node (for understanding underlying HTTP calls)
- General n8n Custom Node Development Guide