Actions64
- Instancia Actions
- Mensagem Actions
- Grupo Actions
- Chat Actions
- Perfil Actions
- Evento Actions
- Integração Actions
Overview
The node named "Evolution API" allows users to interact with the Evolution API service. Specifically, for the resource "Instancia" and operation "Buscar Instancia" (Fetch Instance), it enables searching for an instance by its name. This is useful in scenarios where you need to retrieve details about a particular instance within the Evolution API system, such as fetching configuration or status information based on the instance's name.
Practical examples include:
- Automating retrieval of instance details before performing further actions.
- Integrating instance data into workflows for monitoring or reporting purposes.
Properties
| Name | Meaning |
|---|---|
| Nome Da Instância | The name of the instance you want to search for. |
This property expects a string input where you type the exact name of the instance to be fetched.
Output
The node outputs a JSON array containing the data returned from the Evolution API corresponding to the searched instance. Each item in the array represents an instance matching the search criteria, including all relevant details provided by the API.
If the API supports binary data output, it is not indicated in the provided code or properties, so the output is purely JSON-based.
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. - The node depends on the n8n workflow environment and its helper methods for parameter retrieval and returning JSON arrays.
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 "Instancia" and the operation is "Buscar Instancia".
- Empty or Incorrect Instance Name: Providing an empty or incorrect instance name may result in no data being returned. Verify the instance name is correct and exists in the Evolution API.
- Authentication Issues: Make sure the API key credential is correctly configured; otherwise, requests will fail due to authentication errors.
- Network or API Endpoint Errors: Check network connectivity and confirm the API endpoint is reachable.
Links and References
- Evolution API Documentation (as referenced in the base URL)