Actions64
- Instancia Actions
- Mensagem Actions
- Grupo Actions
- Chat Actions
- Perfil Actions
- Evento Actions
- Integração Actions
Overview
The node "Evolution API" provides an interface to interact with the Evolution API service. Specifically, for the resource Mensagem and operation Enviar Status, it allows users to post status updates in various formats such as text, image, video, or audio. This is useful for automating status sharing on messaging platforms or social media where statuses can be broadcasted to all contacts or a selected list.
Practical examples include:
- Automatically posting a daily motivational text status.
- Sharing a promotional image or video status to a targeted group of contacts.
- Broadcasting audio announcements as status updates.
Properties
| Name | Meaning |
|---|---|
| Nome Da Instância | The name of the instance that will send the status. |
| Tipo Do Status | The type of status to post. Options: Status De Texto (text), Status De Imagem (image), Status De Video (video), Status De Audio (audio). |
| Conteudo Ou URL | The content or URL of the image/video/audio to be posted. Required for all types. |
| Texto Para Status De Imagem/Video | Text caption for image or video status posts. Optional. |
| Cor Do Background | Background color for the status (hex color code). |
| Font Do Texto | Font type for the text. Options: SERIF, NORICAN REGULAR, BRYNDAN WRITE, BEBASNEUE REGULAR, OSWALD HEAVY. |
| Enviar Para Todos | Boolean flag indicating whether to send the status to all contacts. |
| Lista De Contatos | Comma-separated list of contacts who will receive the status if not sending to all. Required if "Enviar Para Todos" is false. |
Output
The node outputs a JSON array containing the response from the Evolution API after attempting to send the status. The exact structure depends on the API response but generally includes confirmation of the status sent or error details.
If the status involves media (image, video, audio), the node handles URLs pointing to these resources; however, it does not output binary data directly.
Dependencies
- Requires an API key credential for authenticating with the Evolution API.
- The node expects the Evolution API endpoint to be accessible and properly configured.
- No additional environment variables are explicitly required beyond the API authentication.
Troubleshooting
Common issues:
- Missing or invalid API credentials will cause authentication failures.
- Providing an invalid or inaccessible URL for media content will result in errors when posting image, video, or audio statuses.
- If "Enviar Para Todos" is false but no contacts are provided in "Lista De Contatos," the node will likely fail due to missing recipients.
- Unsupported combinations of resource and operation will throw an error indicating the operation is not supported.
Error messages:
"Operação não suportada."means the requested operation is not implemented for the chosen resource.- Errors related to network or API response should be checked by verifying API availability and credentials.
To resolve errors:
- Ensure all required fields are filled correctly.
- Verify the API key and permissions.
- Confirm URLs for media are valid and accessible.
- Provide a valid contact list if not sending to all.
Links and References
- Evolution API Documentation (Replace with actual link if available)
- n8n Documentation on Creating Custom Nodes
- General info on Status Posting APIs (Example placeholder)