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 Tenant Audit resource with the Delete operation, it deletes a Tenant Audit record identified by a unique ID.
Common scenarios where this node is beneficial include automating the management of tenant audit logs or records within TeleFlow, such as cleaning up old or irrelevant audit entries programmatically.
For example, you might use this node in a workflow that periodically removes tenant audit records that are no longer needed, helping maintain a clean and efficient system.
Properties
| Name | Meaning |
|---|---|
| ID | The unique identifier of the Tenant Audit record to delete. This is required. |
| Fields | Optional field-value pairs to include in the request for more specific queries (not used in Delete operation). |
Output
The output JSON contains the response from the TeleFlow API after attempting to delete the specified Tenant Audit record. Typically, this will be an object indicating success or failure of the deletion operation.
No binary data is output by this node.
Example output JSON structure:
{
"success": true,
"message": "Tenant Audit record deleted successfully"
}
(Note: Actual response fields depend on the TeleFlow API's delete endpoint.)
Dependencies
- Requires an active connection to the TeleFlow API.
- Needs an API authentication token or key configured in the node credentials.
- 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 throws an error stating that the ID is required for the delete operation. Ensure you provide a valid ID.
- API Request Failures: Network issues, invalid credentials, or insufficient permissions can cause the HTTP DELETE request to fail. Verify your API credentials and network connectivity.
- 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 Creating Custom Nodes