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 integrates with the TeleFlow API to perform various operations on different resources, including Mobile SIMs. Specifically, for the Mobile SIM Delete operation, it allows users to delete a Mobile SIM resource by specifying its unique identifier (ID). This is useful in scenarios where you need to programmatically remove SIM records from your TeleFlow system, such as cleaning up inactive or decommissioned SIMs.
Practical example:
- Automatically deleting a Mobile SIM record when a device is retired or replaced.
- Removing test SIM entries after validation workflows complete.
Properties
| Name | Meaning |
|---|---|
| ID | The unique identifier of the Mobile SIM resource to delete. This is required. |
| 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 Mobile SIM. Typically, this will be an object indicating success or failure of the deletion operation. The exact structure depends on the API's response but generally includes status information or confirmation of deletion.
No binary data output is produced by this operation.
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 endpoints.
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 Mobile SIM ID.
- API errors: If the API returns an error (e.g., resource not found, permission denied), the node will throw an error unless "Continue On Fail" is enabled, in which case the error message is returned in the output JSON.
- Network issues: Connectivity problems or incorrect base URL configuration can cause request failures. Verify network access and credential settings.
- Permission issues: Ensure the API key has sufficient permissions to delete Mobile SIM resources.
Links and References
- TeleFlow API Documentation (Replace with actual URL)
- n8n HTTP Request Node documentation: https://docs.n8n.io/nodes/n8n-nodes-base.httpRequest/