TeleFlow icon

TeleFlow

Interact with TeleFlow API

Overview

This node integrates with the TeleFlow API to manage various resources, including Mobile SIMs. Specifically, the Delete operation for the Mobile SIM resource allows users to remove a mobile SIM record from their TeleFlow system by specifying its unique ID.

Common scenarios where this node is beneficial include:

  • Automating the cleanup of obsolete or deactivated mobile SIM entries.
  • Integrating TeleFlow mobile SIM management into broader workflows that handle device lifecycle or inventory.
  • Ensuring data consistency by programmatically deleting SIM records when no longer needed.

For example, a workflow could trigger the deletion of a Mobile SIM after a device is retired or replaced, helping maintain an up-to-date asset database.

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 operation).

Note: For the Delete operation on Mobile SIM, only the ID property is required and used.

Output

The output is a JSON object representing the response from the TeleFlow API after attempting to delete the specified Mobile SIM. Typically, this will confirm successful deletion or provide error details if the operation failed.

No binary data output is produced by this node.

Example output structure:

{
  "success": true,
  "message": "Mobile SIM deleted successfully"
}

or in case of failure:

{
  "error": "Resource not found or already deleted"
}

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 for the delete operation. Ensure you supply a valid Mobile SIM ID.
  • API Errors: If the API returns errors such as "Resource not found," verify that the Mobile SIM ID exists and has not been deleted previously.
  • Authentication Issues: Failure to authenticate with the TeleFlow API will prevent any operations. Confirm that the API key or token is correctly configured.
  • Network Issues: Connectivity problems can cause timeouts or failures. Check network access to the TeleFlow API endpoint.

Links and References

Discussion