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 for n8n enables integration with the NotificaMe Hub API, specifically targeting OLX messaging. The "Enviar Mensagem De Texto" operation allows users to send a text message to a recipient on OLX via a specified channel. This is useful for automating communication workflows, such as sending notifications, follow-ups, or customer support messages directly through OLX.
Practical examples:
- Automatically notify an OLX user about updates to their listing.
- Send personalized messages to potential buyers or sellers on OLX.
- Integrate OLX messaging into broader customer engagement or CRM workflows.
Properties
| Display Name | Type | Description |
|---|---|---|
| ID Do Canal | String | ID do canal da OLX (OLX channel ID). |
| ID Do Destinatário | String | ID do destinatário na OLX (Recipient ID). |
| Mensagem | String | Texto da mensagem a ser enviada (Message). |
All properties are required for this operation.
Output
The output will be a JSON object containing the response from the NotificaMe Hub API after attempting to send the message. While the exact structure depends on the API's response, it typically includes:
{
"success": true,
"messageId": "string",
"timestamp": "string",
"details": { /* ... */ }
}
success: Indicates if the message was sent successfully.messageId: Unique identifier for the sent message.timestamp: When the message was processed.details: Additional information or metadata from the API.
Note: The actual fields may vary depending on the API's implementation.
Dependencies
- External Service: Requires access to the NotificaMe Hub API.
- API Credentials: You must configure the
notificamehubApicredential in n8n. - Environment: No additional environment variables are needed beyond standard n8n configuration.
Troubleshooting
Common issues:
- Invalid Channel or Recipient ID: Ensure that both IDs are correct and correspond to valid OLX entities.
- Missing Required Fields: All three properties are mandatory; omitting any will result in errors.
- Authentication Errors: If credentials are missing or incorrect, the node will fail to connect to the NotificaMe Hub API.
- API Rate Limits or Downtime: If the NotificaMe Hub API is unavailable or rate-limited, requests may fail.
Common error messages:
"Invalid channelId or recipientId": Double-check the provided IDs."Authentication failed": Verify your API credentials in n8n."Message content is empty": Ensure the "Mensagem" field is not blank.