TeleFlow icon

TeleFlow

Interact with TeleFlow API

Overview

This node interacts with the TeleFlow API to manage various resources, including users. Specifically, the "User Delete" operation allows you to delete a user resource by specifying its unique ID. This is useful in scenarios where you need to programmatically remove user accounts from your TeleFlow system, such as automating cleanup of inactive users or managing user lifecycle within workflows.

Example use cases:

  • Automatically deleting a user after account deactivation.
  • Removing test or temporary users created during automated testing.
  • Integrating user management into broader business process automation.

Properties

Name Meaning
ID The unique identifier of the user resource to delete. This is required for the operation.
Fields Optional field-value pairs to include in the request for more specific queries (not typically used in delete).

Output

The output JSON contains the response from the TeleFlow API after attempting to delete the specified user. 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 confirms whether the user was deleted.

No binary data output is produced by this operation.

Dependencies

  • Requires an API key credential for authenticating with the TeleFlow API.
  • The node expects the base URL of the TeleFlow API to be configured in the credentials.
  • Network connectivity to the TeleFlow API endpoint is necessary.

Troubleshooting

  • Missing ID error: If the "ID" property is not provided, the node throws an error stating that the ID is required. Ensure you provide a valid user ID.
  • API errors: Errors returned from the TeleFlow API (e.g., user not found, permission denied) will be surfaced. Check the API response message for details.
  • Network issues: Connectivity problems or incorrect base URL configuration can cause request failures.
  • To continue processing other items even if one fails, enable the "Continue On Fail" option in the node settings.

Links and References

  • TeleFlow API documentation (refer to your internal or official TeleFlow API docs for detailed info on user deletion endpoints).

Discussion