Actions64
- Instancia Actions
- Mensagem Actions
- Grupo Actions
- Chat Actions
- Perfil Actions
- Evento Actions
- Integração Actions
Overview
The node "Evolution API" allows interaction with the Evolution API service. Specifically, for the resource Perfil and operation Buscar Perfil Profissional, it fetches professional profile information associated with a given contact number from an instance of the Evolution API.
This node is useful in scenarios where you need to retrieve detailed professional profile data programmatically, such as integrating contact profiles into CRM systems, automating customer support workflows, or enriching user data in marketing platforms.
Example use cases:
- Fetching a professional profile by contact number to display in a dashboard.
- Automating profile lookups during customer onboarding.
- Synchronizing profile data between Evolution API and other databases.
Properties
| Name | Meaning |
|---|---|
| Nome Da Instância | The name of the Evolution API instance to connect to. |
| Contato | The contact number (remote JID) whose professional profile will be fetched. |
Output
The node outputs a JSON array containing the fetched professional profile data corresponding to the specified contact number. The structure of the JSON depends on the Evolution API response but generally includes fields related to the professional profile details.
If the API supports binary data (e.g., profile images), it would be included accordingly, but this is not explicitly shown in the provided code.
Dependencies
- Requires an API key credential for authenticating with the Evolution API.
- The base URL for requests is set to
https://doc.evolution-api.com/api-reference. - Proper configuration of the API credentials within n8n is necessary.
Troubleshooting
- Operation not supported error: If you select an unsupported operation or resource, the node throws an error indicating the operation is not supported. Ensure that the resource is "profile-api" and the operation is "fetch-professional-profile".
- Missing required parameters: Both "Nome Da Instância" and "Contato" are required. Omitting these will cause errors.
- API connectivity issues: Verify network access and correct API credentials.
- Invalid contact number format: Ensure the contact number matches the expected format by the Evolution API.
Links and References
- Evolution API Documentation (base URL used by the node)
- n8n documentation on creating custom nodes