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 manage various resources, including accounts. Specifically, for the Account - Create operation, it allows users to create a new account by specifying its name and additional optional fields. This is useful in scenarios where you want to programmatically add new accounts to your TeleFlow system, such as onboarding new clients or automating account creation workflows.
For example, you might use this node to:
- Automatically create customer accounts when a new user signs up on your platform.
- Batch import multiple accounts from an external database.
- Integrate account creation into a larger automated provisioning process.
Properties
Name | Meaning |
---|---|
Name | The descriptive name of the account to be created. This is a required field. |
Fields | Additional custom fields to include in the request. You can add multiple field-value pairs to specify extra details for the account. Each pair consists of a field name and its corresponding value. |
Output
The node outputs JSON data representing the response from the TeleFlow API after creating the account. This typically includes details of the newly created account such as its unique identifier, name, and any other properties returned by the API.
No binary data output is produced by this operation.
Example output structure (simplified):
{
"id": "string",
"name": "string",
"otherProperties": "..."
}
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 the "Name" property is not provided, the node will fail because the API requires it to create an account.
- API Authentication Errors: Ensure that the API key or token is correctly configured and has sufficient permissions.
- Network Issues: Verify network connectivity to the TeleFlow API endpoint.
- Error Messages: If the API returns an error, the node will throw an error with the message from the API. Enabling "Continue On Fail" allows processing to continue while capturing errors in the output.
Links and References
- TeleFlow API Documentation (Replace with actual link if available)