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 and retrieve information about professionals within a healthcare setting. Specifically, the "Listar Profissionais" operation fetches a list of professionals, optionally filtered by specialty ID or unit ID. This is useful for scenarios where you need to obtain professional details for scheduling, reporting, or administrative purposes.
Practical examples include:
- Retrieving all professionals associated with a particular specialty to display available doctors for patient appointments.
- Filtering professionals by a specific clinic unit to manage staff allocation or generate unit-specific reports.
Properties
| Name | Meaning |
|---|---|
| Filtros | Collection of optional filters to narrow down the list of professionals: |
| - Especialidade ID: Numeric ID of the specialty (optional) | |
| - Unidade ID: Numeric ID of the unit/clinic (optional) |
Output
The output is an array of JSON objects representing the professionals retrieved from the Feegow API. Each item in the output corresponds to one professional's data as returned by the API endpoint /api/professionals/list.
The exact structure of each professional object depends on the Feegow API response but typically includes identifiers, names, specialties, and associated units.
No binary data output is produced by this operation.
Dependencies
- Requires an API key credential for authenticating requests to the Feegow Clinic API.
- The node uses an internal helper function to make HTTP requests to Feegow endpoints.
- Proper configuration of the Feegow API credentials in n8n is necessary for successful operation.
Troubleshooting
Common issues:
- Invalid or missing API credentials will cause authentication failures.
- Providing invalid filter values (e.g., non-numeric IDs) may result in API errors or empty results.
- Network connectivity problems can prevent communication with the Feegow API.
Error messages:
- Errors are thrown with messages like
Erro na operação listProfessionals para professionals: <error message>. - To resolve, verify API credentials, check filter inputs, and ensure network access to the Feegow API.
- Errors are thrown with messages like
Links and References
- Feegow Clinic API Documentation (example placeholder, replace with actual if available)