Actions25
- Agendamento Actions
- Convênio Actions
- Empresa Actions
- Especialidade Actions
- Paciente Actions
- Procedimento Actions
- Profissional Actions
Overview
This node integrates with the Feegow Clinic API to manage healthcare-related data. Specifically, for the "Convênio" resource and the "Listar Convênios" operation, it retrieves a list of insurance agreements (convenios) associated with a specified unit ID. This is useful in scenarios where you need to fetch available insurance plans or agreements linked to a particular clinic or healthcare unit.
Practical examples include:
- Automatically retrieving all insurance agreements accepted by a specific clinic unit to display on a patient portal.
- Synchronizing insurance agreement data between Feegow and another system for reporting or billing purposes.
Properties
| Name | Meaning |
|---|---|
| Filtros | Collection of filters to apply when listing convenios. Contains: - Unidade ID: The numeric ID of the unit (clinic or healthcare facility). This is mandatory to specify which unit's convenios to list. |
Output
The node outputs an array of JSON objects representing the insurance agreements ("convenios") retrieved from the Feegow API endpoint /api/insurance/list. Each item in the output corresponds to one convenio record as returned by the API.
The exact structure of each convenio object depends on the Feegow API response but typically includes details such as convenio ID, name, coverage information, and related metadata.
No binary data output is produced by this operation.
Dependencies
- Requires an API key credential for authenticating with the Feegow Clinic API.
- The node uses HTTP requests to Feegow endpoints; thus, network connectivity to the Feegow API service is necessary.
- No additional external dependencies beyond the Feegow API and n8n environment are required.
Troubleshooting
Common issues:
- Missing or invalid "Unidade ID" filter will likely cause the API request to fail or return no results.
- Network connectivity problems or incorrect API credentials can result in authentication errors.
- If the Feegow API changes its endpoint or response format, the node may fail until updated.
Error messages:
- Errors are thrown with messages like
Erro na operação listConvenios para convenios: <error message>. - To resolve, verify that the "Unidade ID" is correctly set and that the API credentials are valid.
- Check network access and ensure the Feegow API service is reachable.
- Errors are thrown with messages like
Links and References
- Feegow Clinic API Documentation (example link; replace with actual if available)
- n8n documentation on creating custom nodes