Feegow Clinic icon

Feegow Clinic

Integração com a API Feegow

Overview

This node integrates with the Feegow Clinic API to perform various operations related to healthcare management. Specifically, for the Procedimento resource and the Listar Pacotes operation, it retrieves a list of procedure bundles (packages) available in the Feegow system.

This functionality is useful when you want to automate fetching grouped medical procedures or packages offered by a clinic, for example, to display them on a website, synchronize with other systems, or analyze available service bundles.

Practical examples:

  • Automatically retrieve and update your internal database with the latest procedure bundles from Feegow.
  • Use the list of procedure packages to generate reports or dashboards about services offered.
  • Integrate with booking systems that require knowledge of available procedure bundles.

Properties

Name Meaning
Filters A collection of filters to narrow down the list of procedure bundles. (Currently no specific filter options are defined.)

Output

The node outputs an array of JSON objects, each representing the response from the Feegow API for the requested operation. For the Listar Pacotes operation, the output JSON contains the list of procedure bundles retrieved from the endpoint /api/procedures/bundles.

The exact structure of each bundle object depends on the Feegow API response but typically includes details such as bundle ID, name, description, included procedures, pricing, and other 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 server is necessary.
  • No additional external dependencies beyond the Feegow API and n8n's standard environment.

Troubleshooting

  • Common issues:

    • Authentication failures due to invalid or missing API credentials.
    • Network errors if the Feegow API is unreachable.
    • Empty or unexpected responses if filters are incorrectly set or the API changes.
  • Error messages:

    • Erro na operação listBundles para procedures: <message> indicates an error occurred during the "Listar Pacotes" operation. The <message> will provide more detail, such as network timeout or authentication failure.
  • Resolutions:

    • Verify that the API key credential is correctly configured and has sufficient permissions.
    • Check network connectivity and Feegow API status.
    • Review any applied filters to ensure they conform to expected formats.
    • Consult Feegow API documentation for any recent changes.

Links and References

Discussion