Actions64
- Instancia Actions
- Mensagem Actions
- Grupo Actions
- Chat Actions
- Perfil Actions
- Evento Actions
- Integração Actions
Overview
This node, named "Evolution API," allows users to interact with the Evolution API service. Specifically, for the resource "Perfil" and operation "Buscar Configurações De Privacidade" (Search Privacy Settings), it retrieves privacy configuration data related to a user profile or instance. This can be useful in scenarios where you need to programmatically access or audit privacy settings of profiles managed within the Evolution API system.
Practical examples include:
- Automatically fetching privacy settings for compliance checks.
- Integrating privacy configurations into dashboards or reports.
- Syncing privacy preferences across multiple systems.
Properties
| Name | Meaning |
|---|---|
| Nome Da Instância | The name of the instance to query. This is a required string input where you specify which instance's privacy settings you want to retrieve. |
Output
The node outputs a JSON array containing the results returned by the Evolution API for the requested privacy settings. Each item in the array represents a set of privacy configurations associated with the specified instance.
If the API supports binary data output, it is not indicated in the provided code or properties, so the output is expected to be purely JSON.
Dependencies
- Requires an API key credential for authenticating with the Evolution API service.
- The base URL for requests is
https://doc.evolution-api.com/api-reference. - The node expects JSON responses and sends requests with appropriate headers (
Accept: application/json,Content-Type: application/json).
Troubleshooting
- Operation Not Supported Error: If you select an unsupported operation or resource, the node throws an error stating the operation is not supported. Ensure that the resource is "Perfil" and the operation is "Buscar Configurações De Privacidade".
- Missing Required Property: The "Nome Da Instância" property is required. Omitting this will likely cause the API call to fail or return no data.
- Authentication Issues: Make sure the API key credential is correctly configured and has sufficient permissions to access privacy settings.
- Network or API Errors: Check network connectivity and verify the Evolution API service status if requests fail.
Links and References
- Evolution API Documentation (base URL used by the node)
- n8n Documentation on Creating Custom Nodes