Actions64
- Mensagem Actions
- Grupo Actions
- Chat Actions
- Perfil Actions
- Evento Actions
- Integração Actions
- Instancia Actions
Overview
The "Remover Foto Do Perfil" operation under the "Perfil" resource in this custom n8n node is designed to remove a user's profile photo via the Evolution API. This node would be beneficial in automated workflows where you need to programmatically clear or reset user profile images, such as when handling account deletions, privacy requests, or resetting user data.
Practical examples:
- Automating GDPR compliance by removing user photos upon request.
- Resetting profile pictures for users who violate image guidelines.
- Bulk removal of profile photos during system migrations.
Properties
| Display Name | Type | Description |
|---|---|---|
| Nome Da Instância | String | Digite o nome da instância (Enter the instance name). This property is required and specifies which instance's profile photo should be removed. |
Output
The output will be a JSON array containing the result of the profile photo removal operation. The exact structure depends on the API response, but typically it may include fields such as status, message, or confirmation of deletion.
[
{
// Example fields (actual fields depend on API response)
"status": "success",
"message": "Profile photo removed successfully"
}
]
Dependencies
- External Service: Requires access to the Evolution API.
- Credentials: You must configure valid Evolution API credentials in n8n.
- Environment: No special environment variables are mentioned, but ensure network access to
https://doc.evolution-api.com/api-reference.
Troubleshooting
Common Issues:
- Missing or invalid credentials will prevent the node from authenticating with the Evolution API.
- Providing an incorrect "Nome Da Instância" may result in errors or no action taken.
- Network issues could block communication with the API endpoint.
Error Messages:
"Operação não suportada."
Meaning: The selected operation is not supported for the given resource.
Resolution: Double-check that you have selected the correct resource and operation combination.- API-specific error messages may be returned in the output JSON if the API call fails (e.g., unauthorized, not found).