Actions64
- Instancia Actions
- Mensagem Actions
- Grupo Actions
- Chat Actions
- Perfil Actions
- Evento Actions
- Integração Actions
Overview
This node interacts with the Evolution API to update privacy settings of a user profile. It allows users to configure who can see their read receipts, profile photo, status, online presence, last seen time, and who can add them to groups. This is useful for managing privacy preferences in messaging or social platforms where controlling visibility of personal information is important.
Practical examples:
- A user wants to hide their "last seen" status from everyone except their contacts.
- A user prefers that only specific contacts can see their profile photo.
- Restricting group invitations to contacts only to avoid spam.
Properties
| Name | Meaning |
|---|---|
| Nome Da Instância | The name of the instance (required string). |
| Confirmação De Leitura | Who can see when you have read messages. Options: Todos (all), Ninguém (none). |
| Foto Do Perfil | Who can see your profile photo. Options: Todos (all), Meus Contatos (contacts), Exceto Contatos Específicos (contact_blacklist), Ninguém (none). |
| Status | Who can see your status. Options: Todos (all), Meus Contatos (contacts), Exceto Contatos Específicos (contact_blacklist), Ninguém (none). |
| Online | Who can see when you are online. Options: Todos (all), Igual Ao Visto Por Último (match_last_seen). |
| Visto Por Último | Who can see your last seen time. Options: Todos (all), Meus Contatos (contacts), Exceto Contatos Específicos (contact_blacklist), Ninguém (none). |
| Grupos | Who can add you to groups. Options: Todos (all), Meus Contatos (contacts), Exceto Contatos Específicos (contact_blacklist). |
Output
The node outputs a JSON array containing the result of the privacy settings update operation. The exact structure depends on the Evolution API response but generally includes confirmation of updated settings or error details if the update failed.
No binary data output is indicated.
Dependencies
- Requires an API key credential for authenticating with the Evolution API.
- The base URL for requests is
https://doc.evolution-api.com/api-reference. - Proper configuration of the API credential in n8n is necessary.
Troubleshooting
- Unsupported Operation Error: If the selected operation is not supported for the resource, the node throws an error indicating the function is not supported. Ensure the correct resource and operation names are used.
- API Authentication Failures: Errors related to authentication usually mean the API key credential is missing or invalid. Verify the API key setup.
- Invalid Property Values: Providing unsupported option values may cause the API to reject the request. Use only the defined options for each property.
- Network Issues: Connectivity problems with the Evolution API endpoint will cause request failures. Check network access and API availability.
Links and References
- Evolution API Documentation (official API reference)