Actions64
- Chat Actions
- Perfil Actions
- Evento Actions
- Integração Actions
- Instancia Actions
- Mensagem Actions
- Grupo Actions
Overview
This node, named "Evolution API," allows users to interact with the Evolution API service. Specifically, for the resource "Perfil" (Profile) and operation "Remover Foto Do Perfil" (Remove Profile Photo), it provides functionality to remove a user's profile photo from the specified instance. This can be useful in scenarios where a user wants to update or clear their profile picture programmatically.
Practical examples include:
- Automating profile photo removal as part of a user data cleanup workflow.
- Integrating with other systems that require resetting or removing profile images on demand.
- Managing user profiles in bulk by removing photos based on certain triggers or conditions.
Properties
| Name | Meaning |
|---|---|
| Nome Da Instância | The name of the instance where the profile photo will be removed. This is a required string input. |
Output
The node outputs a JSON array containing the result of the profile photo removal operation. The exact structure depends on the Evolution API's response but typically includes confirmation of success or details about the removal action.
If the node supports binary data output (e.g., returning the removed photo), it would be summarized here; however, based on the provided code, the output is JSON only.
Dependencies
- Requires an API key credential for authenticating with the Evolution API.
- The node expects the Evolution API service to be accessible and properly configured.
- No additional environment variables are explicitly required beyond the API authentication.
Troubleshooting
- Operation Not Supported Error: If the node throws an error stating the operation is not supported, verify that the resource and operation names are correctly set to "Perfil" and "Remover Foto Do Perfil" respectively.
- Authentication Issues: Ensure the API key credential is valid and has sufficient permissions to perform profile photo removals.
- Instance Name Missing or Incorrect: Since "Nome Da Instância" is required, make sure it is provided and corresponds to a valid instance in the Evolution API.
- API Connectivity Problems: Check network connectivity and API endpoint availability if requests fail.
Links and References
- Evolution API Documentation (Replace with actual URL)
- n8n Documentation on Creating Custom Nodes