Actions145
- User Actions
- Voice Actions
- File Actions
- Flow Actions
- Reseller Actions
- SIP Trunk Actions
- Transcription Actions
- Voice Mail Message Actions
- 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
- Flow Template Actions
- LCR Actions
- Mobile SIM Actions
- Number Port Actions
- Phone Number Actions
- Provision Actions
- Report Actions
- Tariff Actions
- Tariff Code Actions
- Tariff Profile Actions
- Tenant Actions
- Tenant Audit Actions
Overview
The node interacts with the TeleFlow API to perform various operations on different resources. Specifically, for the Transcription resource and the Create operation, it sends a POST request to create a new transcription entry in the TeleFlow system.
This node is useful when you want to automate the creation of transcriptions within your TeleFlow environment, such as adding new transcription records programmatically based on input data or workflow triggers.
Practical Example
- Automatically creating a transcription record after processing an audio file.
- Integrating transcription creation into a larger call management or voice processing workflow.
Properties
| Name | Meaning |
|---|---|
| Fields | A collection of field-value pairs to include in the request. You can add multiple fields, each with a name and corresponding value, to specify additional parameters for the transcription creation request. |
The "Fields" property allows flexible customization by specifying any number of fields relevant to the transcription creation API endpoint.
Output
The output is an array of JSON objects, each representing the response from the TeleFlow API for the transcription creation request. The structure of the JSON depends on the API's response but generally includes details about the created transcription record.
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 REST API.
Troubleshooting
- Missing Required Fields: If required fields for creating a transcription are not provided, the API may return errors. Ensure all mandatory fields are included in the "Fields" property.
- Authentication Errors: If the API key or base URL is incorrect or missing, authentication will fail. Verify the credential configuration.
- API Request Failures: Network issues or invalid field values can cause request failures. Check error messages logged by the node for details.
- ID Requirement Errors: Although not applicable for create operation, other operations require an ID parameter; ensure correct usage per operation.
Links and References
- TeleFlow API Documentation (Replace with actual URL)
- n8n HTTP Request Node documentation for understanding request options: https://docs.n8n.io/nodes/n8n-nodes-base.httpRequest/