TeleFlow icon

TeleFlow

Interact with TeleFlow API

Overview

This node integrates with the TeleFlow API to manage user resources, specifically allowing you to update user details. It is useful in scenarios where you need to programmatically modify user information such as username and email within your TeleFlow system. For example, you might use this node to synchronize user data from another system or update user contact details automatically.

Properties

Name Meaning
ID The unique identifier of the user resource to update.
Fields Optional field-value pairs for more specific queries (not typically used in update).
Username The new or updated username for the user. Must be unique.
Email The new or updated email address for the user. Must be a valid email format.

Output

The node outputs JSON data representing the updated user object returned by the TeleFlow API after a successful update operation. This JSON includes the user's current state with the applied changes.

No binary data output is produced by this node.

Dependencies

  • Requires an API key credential configured in n8n to authenticate requests to the TeleFlow API.
  • The base URL for the TeleFlow API must be set in the node credentials.
  • The node uses HTTP methods (PUT) to interact with the TeleFlow REST endpoints.

Troubleshooting

  • Missing ID Error: If the "ID" property is not provided when performing an update, the node will throw an error stating that the ID is required. Ensure you provide a valid user ID.
  • Invalid Email Format: Providing an invalid email address may cause the API to reject the request. Verify the email format before updating.
  • Authentication Failures: If the API key or base URL is incorrect or missing, the node will fail to connect. Check your credentials configuration.
  • API Errors: Any errors returned by the TeleFlow API (e.g., user not found, duplicate username) will be surfaced as node errors. Review the error message for details.

Links and References

Discussion