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, including "Tariff Profile". Specifically, the Get operation for the Tariff Profile resource retrieves detailed information about a single tariff profile by its unique ID. This is useful when you need to fetch configuration or metadata related to a specific tariff profile in your telephony or billing system.
Common scenarios include:
- Retrieving tariff profile details to display or process in workflows.
- Validating tariff profile existence before performing updates or deletions.
- Integrating tariff profile data into reports or dashboards.
Example: You have a workflow that processes customer billing and needs to fetch the associated tariff profile details by ID to calculate charges accurately.
Properties
| Name | Meaning |
|---|---|
| ID | The unique identifier of the tariff profile to retrieve. This is required. |
| Fields | Optional key-value pairs specifying additional fields to include in the request query. Each pair consists of a field name and its value, allowing more specific queries or filtering. |
Output
The output is a JSON object representing the retrieved tariff profile's data as returned by the TeleFlow API. It contains all the properties of the tariff profile resource, such as its identifiers, names, settings, or other metadata.
No binary data is output by this node.
Dependencies
- Requires an active connection to the TeleFlow API.
- Needs an API authentication credential configured in n8n (an API key or token).
- The base URL for the TeleFlow API must be set in the node credentials.
Troubleshooting
- Missing ID error: If the ID property is not provided, the node will throw an error stating that the ID is required. Ensure you supply a valid tariff profile ID.
- API connection errors: Network issues or invalid credentials can cause HTTP request failures. Verify your API key/token and network connectivity.
- Invalid field names: Providing incorrect field names in the Fields property may result in unexpected API responses or errors. Double-check field names against TeleFlow API documentation.
- Continue on Fail: If enabled, the node will continue processing subsequent items even if one fails, returning error details in the output JSON.
Links and References
- TeleFlow API Documentation (Replace with actual URL)
- n8n Documentation on HTTP Request Node (for understanding underlying HTTP calls)
- General n8n Node Development Guide