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 tariffs. Specifically, the Delete operation for the Tariff resource allows users to remove a tariff entry by its unique identifier. This is useful in scenarios where obsolete or incorrect tariff configurations need to be cleaned up from the system.
Practical examples:
- Automatically deleting tariffs that are no longer valid after a pricing update.
- Removing test or temporary tariffs created during development or troubleshooting.
- Cleaning up tariffs associated with deactivated accounts or services.
Properties
| Name | Meaning |
|---|---|
| ID | The unique identifier of the tariff resource to delete. This is required for the action. |
| Fields | Optional field-value pairs to include in the request for more specific queries (not used in delete but available for other operations). |
Output
The output JSON contains the response from the TeleFlow API after attempting to delete the specified tariff. Typically, this will confirm whether the deletion was successful or provide details if it failed.
Example output structure:
{
"success": true,
"message": "Tariff deleted successfully"
}
or an error message if deletion failed.
No binary data output is produced by this operation.
Dependencies
- Requires an active connection to the TeleFlow API.
- Needs an API authentication token configured in the node credentials.
- The base URL for the TeleFlow API must be set in the credentials configuration.
Troubleshooting
- Missing ID Error: If the ID property is not provided, the node throws an error stating that the ID is required. Ensure you supply the correct tariff ID.
- API Request Failures: Network issues, invalid credentials, or insufficient permissions can cause the delete request to fail. Verify API keys and network connectivity.
- Continue on Fail: If enabled, the node will continue processing subsequent items even if one deletion fails, returning error details in the output JSON.
Links and References
- TeleFlow API Documentation (Replace with actual link)
- n8n Documentation on HTTP Request Node for understanding underlying HTTP calls.