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 interacts with the TeleFlow API to perform various operations on different resources. Specifically, for the Account Audit resource with the Create operation, it allows users to create new account audit records by sending specified fields to the TeleFlow API.
Common scenarios where this node is beneficial include:
- Automating the creation of audit logs or records related to accounts in TeleFlow.
- Integrating TeleFlow account auditing into larger workflows for compliance or monitoring.
- Dynamically adding audit entries based on events or triggers in other systems.
For example, a user might use this node to automatically log changes made to an account whenever an update occurs elsewhere in their system.
Properties
| Name | Meaning |
|---|---|
| Fields | A collection of field-value pairs to include in the request. Users can add multiple pairs to specify detailed data for the account audit record being created. |
The "Fields" property supports multiple entries, each consisting of:
- Name: The name of the field to set in the audit record.
- Value: The corresponding value for that field.
Output
The node outputs JSON data representing the response from the TeleFlow API after creating the account audit record. This typically includes details of the newly created audit entry such as its ID and any other metadata returned by the API.
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 node credentials.
- The node uses HTTP requests to communicate with the TeleFlow API endpoints.
Troubleshooting
- Missing Required Fields: If required fields are not provided in the "Fields" property, the API may reject the request. Ensure all mandatory fields for creating an account audit record are included.
- API Authentication Errors: If the API key or base URL is incorrect or missing, authentication will fail. Verify the credential configuration.
- HTTP Request Failures: Network issues or incorrect endpoint URLs can cause errors. Check connectivity and ensure the resource path
/accountAuditsis correct. - Error Messages: The node throws errors if required parameters are missing (e.g., ID for get/update/delete operations). For create, ensure the fields are properly set.
If the node is set to continue on failure, errors will be returned in the output JSON under an error property.
Links and References
- TeleFlow API Documentation (Replace with actual URL)
- n8n HTTP Request Node documentation for understanding API calls: https://docs.n8n.io/nodes/n8n-nodes-base.httpRequest/