Actions31
- Revenda Actions
- Instagram Actions
- Messenger Actions
- WhatsApp Actions
- Telegram Actions
- Mercado Livre Actions
- OLX Actions
- WebChat Actions
- Email Actions
Overview
The NotificaMe Hub node, when configured with the Revenda resource and the Definir Webhook operation, allows users to set up webhook endpoints for their reseller (revenda) channel. This enables the NotificaMe Hub platform to send real-time event notifications to specified URLs whenever relevant events occur in your reseller account.
Common scenarios:
- Integrating NotificaMe Hub with external systems by forwarding events (such as new messages, status updates, or other activities) to your own backend or third-party services.
- Setting up primary and secondary webhook URLs for redundancy or multi-system integration.
- Automating workflows in n8n based on incoming events from NotificaMe Hub.
Practical example:
A company using NotificaMe Hub to manage messaging channels can use this node to automatically forward all incoming message events to their CRM system via a webhook, ensuring that customer interactions are logged in real time.
Properties
| Display Name | Type | Description |
|---|---|---|
| Token Do Canal | String | Token do canal para o qual deseja receber eventos. Required. Used to authenticate the request. |
| URL Do Webhook | String | URL para onde os eventos serão enviados. Required. The main endpoint for event delivery. |
| URL Do Webhook Secundário | String | URL secundária para onde os eventos também serão enviados (opcional). Optional backup or additional endpoint. |
Output
The output of this operation is a JSON object reflecting the result of the webhook configuration request. While the exact structure depends on the API response, it typically includes:
{
"success": true,
"message": "Webhook definido com sucesso",
"data": {
// Details about the webhook configuration, such as URLs and channel info
}
}
success: Indicates if the webhook was set successfully.message: A human-readable message about the operation.data: Contains details about the configured webhook(s).
Note: The node does not output binary data.
Dependencies
- External Service: Requires access to the NotificaMe Hub API.
- API Key: You must provide valid NotificaMe Hub credentials (
notificamehubApi) in n8n. - Environment: Ensure that the webhook URLs you provide are publicly accessible so NotificaMe Hub can reach them.
Troubleshooting
Common issues:
- Invalid Channel Token: If the "Token Do Canal" is incorrect or expired, the API will reject the request. Double-check your token.
- Inaccessible Webhook URL: If the provided webhook URLs are not reachable from the internet, NotificaMe Hub will not be able to deliver events.
- Missing Required Fields: Both "Token Do Canal" and "URL Do Webhook" are required. Omitting them will cause validation errors.
Common error messages:
"Invalid channel token": Ensure you have copied the correct token from your NotificaMe Hub dashboard."Webhook URL is invalid or unreachable": Verify that your endpoint is live and accepts POST requests."Missing required parameter": Make sure all required fields are filled in the node configuration.