TeleFlow icon

TeleFlow

Interact with TeleFlow API

Overview

This node interacts with the TeleFlow API to manage various resources, including accounts. Specifically, for the Account - Create operation, it allows users to create a new account by specifying its name and additional optional fields. This is useful in scenarios where you want to programmatically add new accounts to your TeleFlow system, such as onboarding new clients or setting up test accounts automatically.

Practical example: Automatically creating a new customer account in TeleFlow when a signup form is submitted on your website.

Properties

Name Meaning
Name The descriptive name of the account to be created.
Fields Additional field-value pairs to include in the request for more specific data (optional).
  • Name is required.
  • Fields is a collection allowing multiple entries, each with:
    • Field: The name of the field to include.
    • Value: The corresponding value for that field.

Output

The node outputs JSON data representing the response from the TeleFlow API after creating the account. This typically includes details of the newly created account such as its ID, name, and any other metadata returned by the API.

No binary data output is involved.

Example output structure (simplified):

{
  "id": "string",
  "name": "string",
  "otherProperties": "..."
}

Dependencies

  • Requires an API key credential for authenticating with the TeleFlow API.
  • The base URL for the API must be configured in the node credentials.
  • The node uses HTTP requests to communicate with the TeleFlow REST API.

Troubleshooting

  • Missing Required Fields: If the "Name" property is not provided, the node will fail because it is required for account creation.
  • API Errors: Errors returned by the TeleFlow API (e.g., authentication failure, invalid data) will be surfaced as error messages. Ensure the API key and base URL are correctly configured.
  • Network Issues: Connectivity problems can cause request failures; verify network access to the TeleFlow API endpoint.
  • 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

Discussion