NotificaMe Hub icon

NotificaMe Hub

Integração com NotificaMe Hub API

Overview

The NotificaMe Hub node for n8n enables integration with the NotificaMe Hub API, specifically allowing you to send audio messages via Telegram. This is useful in scenarios where automated workflows need to deliver voice notes or audio files to Telegram channels or users—such as sending alerts, notifications, or multimedia content.

Practical examples:

  • Sending a pre-recorded voice message to a Telegram group when a critical system alert is triggered.
  • Delivering personalized audio reminders to individual Telegram users.
  • Broadcasting announcements in audio format to a Telegram channel.

Properties

Below are the input properties required for the "Telegram" resource and "Enviar Audio" operation:

Display Name Type Description
ID Do Canal String ID do canal do Telegram (Target channel ID)
ID Do Destinatário String ID do destinatário no Telegram (Recipient user ID)
URL Do Áudio String URL pública do arquivo de áudio (Public URL of the audio file to be sent)

All fields are required.

Output

The node outputs a json object containing the response from the NotificaMe Hub API after attempting to send the audio message. The structure typically includes:

{
  "success": true,
  "messageId": "string",
  "timestamp": "string",
  "details": { /* additional info from API */ }
}
  • success: Indicates if the audio was sent successfully.
  • messageId: Identifier of the sent message (if available).
  • timestamp: When the message was processed.
  • details: Any additional information returned by the API.

Note: The exact output fields may vary depending on the API's response.

Dependencies

  • External Service: Requires access to the NotificaMe Hub API.
  • API Credentials: You must configure the notificamehubApi credential in n8n.
  • Environment: The node expects a publicly accessible URL for the audio file.

Troubleshooting

Common Issues:

  • Invalid Channel or Recipient ID: If the provided IDs are incorrect, the message will not be delivered. Double-check these values in your Telegram account.
  • Audio URL Not Accessible: The audio file must be hosted at a public URL. Private or inaccessible URLs will cause failures.
  • Authentication Errors: Ensure that the notificamehubApi credentials are correctly set up in n8n.

Error Messages & Resolutions:

  • "Unauthorized": Check your API credentials.
  • "Channel/User not found": Verify the channel and recipient IDs.
  • "Invalid audio URL": Make sure the URL is correct and publicly accessible.

Links and References


If you need further details about other resources or operations, please provide their names.

Discussion