TeleFlow icon

TeleFlow

Interact with TeleFlow API

Overview

This node interacts with the TeleFlow API to manage phone numbers and other resources. Specifically, for the Phone Number - Update operation, it updates an existing phone number's details by sending a PUT request to the TeleFlow API.

Typical use cases include:

  • Modifying phone number attributes such as the number itself or its type (local or toll-free).
  • Automating updates to phone number records in bulk workflows.
  • Integrating TeleFlow phone number management into broader communication or CRM automation processes.

For example, you might update a phone number's type from "local" to "toll-free" when changing your business's contact strategy.

Properties

Name Meaning
ID The unique identifier of the phone number resource to update.
Number The phone number in E.164 format (e.g., +12125551234). This is the new or updated number.
Type The type of phone number. Options: Local or Toll Free.
Fields Additional field-value pairs for more specific queries (not typically used in update).

Output

The node outputs the JSON response returned by the TeleFlow API after updating the phone number. This JSON typically contains the updated phone number object with its current properties reflecting the changes made.

No binary data output is produced by this operation.

Example output structure (simplified):

{
  "id": "string",
  "number": "+12125551234",
  "type": "local",
  // ... other phone number properties as returned by the API
}

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 will throw an error stating that the ID is required for the update operation. Ensure the ID of the phone number to update is specified.
  • Invalid phone number format: The "Number" property must be in E.164 format. Providing an incorrectly formatted number may cause API errors.
  • API connectivity issues: Network problems or incorrect API credentials can cause request failures. Verify API keys and network access.
  • Permission errors: Insufficient permissions on the API key may result in authorization errors when attempting to update resources.

Links and References

Discussion