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 manage various resources, including Billing Entries. Specifically, the Billing Entry - Update operation allows users to update an existing billing entry by specifying its unique ID and providing fields to modify.
Common scenarios for this operation include:
- Correcting or adjusting billing details after initial creation.
- Updating billing metadata or attributes as part of a workflow automation.
- Synchronizing billing information from external systems into TeleFlow.
For example, you might use this node to update the description or amount of a billing entry identified by its ID during a monthly reconciliation process.
Properties
| Name | Meaning |
|---|---|
| ID | The unique identifier of the billing entry to update. This is required to specify which entry to modify. |
| Fields | A collection of field-value pairs representing the properties to update on the billing entry. Each pair includes: - Name: The name of the field to update. - Value: The new value to assign to that field. |
Output
The output is a JSON object representing the updated billing entry as returned by the TeleFlow API. It contains all the current properties of the billing entry after the update has been applied.
No binary data output is produced by this operation.
Dependencies
- Requires an active connection to the TeleFlow API via an API key credential configured in n8n.
- The base URL for the TeleFlow API must be set in the node credentials.
- The node uses HTTP PUT requests to update resources on the TeleFlow server.
Troubleshooting
- Missing ID Error: If the "ID" property is not provided, the node will throw an error stating that the ID is required for the update operation. Ensure the ID is correctly set.
- Invalid Field Names: Providing incorrect or unsupported field names in the "Fields" collection may cause the API to reject the request or ignore those fields. Verify field names against TeleFlow API documentation.
- Authentication Issues: Errors related to authentication usually indicate missing or invalid API credentials. Confirm that the API key and base URL are correctly configured.
- Network or API Errors: Timeouts or server errors can occur if the TeleFlow API is unreachable or returns an error. Check network connectivity and API status.
Links and References
- TeleFlow API Documentation (Replace with actual URL)
- n8n HTTP Request Node Documentation: https://docs.n8n.io/nodes/n8n-nodes-base.httpRequest/