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 resources, including users. Specifically, the "User - Create" operation allows you to create a new user in the TeleFlow system by providing essential details such as username and email. This is useful for automating user management tasks within your telephony or communication infrastructure.
Practical examples:
- Automatically creating new user accounts when onboarding employees.
- Integrating user creation into a larger workflow that provisions telephony services.
- Syncing user data from other systems into TeleFlow.
Properties
| Name | Meaning |
|---|---|
| Username | The unique username for the new user. |
| The valid email address of the new user. | |
| Fields | Additional custom fields as key-value pairs to include in the request for more specifics. |
The Fields property supports multiple entries, each consisting of:
- Field: The name of the field to include.
- Value: The corresponding value for that field.
Output
The output is a JSON object representing the response from the TeleFlow API after creating the user. It typically contains the details of the newly created user, including any identifiers assigned by the system.
No binary data output is produced by this operation.
Dependencies
- Requires an API key credential configured in n8n to authenticate requests to the TeleFlow API.
- The base URL for the TeleFlow API must be set in the credentials configuration.
- The node uses HTTP POST requests to communicate with the TeleFlow API endpoints.
Troubleshooting
- Missing Required Parameters: If "Username" or "Email" is not provided, the node will fail because these are required fields for user creation.
- API Authentication Errors: Ensure the API key credential is correctly configured and has sufficient permissions.
- HTTP Request Failures: Network issues or incorrect base URL settings can cause failures; verify connectivity and credential settings.
- Error Messages: Errors returned from the API will be logged. If "continue on fail" is enabled, errors will be included in the output JSON under an
errorfield.
Links and References
- TeleFlow API Documentation (Replace with actual URL if available)
- n8n HTTP Request Node Documentation