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 clinic management. Specifically, for the resource Procedimento (Procedure) and operation Listar Grupos De Procedimentos (List Procedure Groups), it retrieves groups of medical procedures defined in the Feegow system.

This operation is useful when you want to fetch categorized groups of procedures offered by a clinic or healthcare provider, which can help in organizing services, filtering procedures by group, or displaying procedure categories in an application.

Practical example:
A healthcare software could use this node to dynamically populate dropdowns or filters with procedure groups so that users can select or browse procedures by their groupings.

Properties

Name Meaning
Filtros A collection of filters to narrow down the list of procedure groups. Currently no specific filter options are defined for this operation, so it acts as a placeholder for future extensibility or custom filters.

Output

The node outputs a JSON object containing the response from the Feegow API endpoint /api/procedures/groups. This response typically includes an array of procedure groups, each with details such as group ID, name, and possibly other metadata depending on the API's response structure.

The output format is:

{
  "json": {
    // Response data from /api/procedures/groups endpoint
  }
}

No binary data output is produced by this operation.

Dependencies

  • Requires an active connection to the Feegow Clinic API.
  • Needs an API authentication credential configured in n8n (an API key or token).
  • The node uses HTTP requests internally to communicate with Feegow endpoints.

Troubleshooting

  • Common issues:

    • Invalid or missing API credentials will cause authentication errors.
    • Network connectivity problems may prevent reaching the Feegow API.
    • If the API changes or the endpoint /api/procedures/groups becomes unavailable, the node will fail.
  • Error messages:

    • Errors are thrown with messages like Erro na operação listProcedureGroups para procedures: <error message>.
    • To resolve, verify API credentials, check network access, and confirm the Feegow API status.

Links and References

Discussion