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 scheduling information. Specifically, for the Agendamento (Appointments) resource and the Listar Horários Disponíveis (List Available Schedules) operation, it fetches available appointment time slots for a given date, professional, and unit.
This functionality is useful in scenarios where you want to automate or streamline booking processes by dynamically retrieving open schedule slots from the Feegow system. For example, a healthcare provider could use this node to display available appointment times on their website or within an internal scheduling tool, ensuring up-to-date availability without manual input.
Properties
| Name | Meaning |
|---|---|
| Filtros | Collection of filters to specify the search criteria: |
| - Data: Date in format YYYY-MM-DD (required) | |
| - Profissional ID: Numeric ID of the professional (required) | |
| - Unidade ID: Numeric ID of the unit/location (required) |
These filters are mandatory to narrow down the available schedules to a specific date, professional, and unit.
Output
The node outputs a JSON object containing the response from the Feegow API endpoint /api/appoints/available-schedules. This typically includes a list of available time slots for appointments matching the specified filters.
The exact structure depends on the Feegow API but generally will include details such as:
- Available dates and times
- Professional information
- Unit/location details
No binary data output is involved in this operation.
Dependencies
- Requires an active connection to the Feegow Clinic API.
- The node needs a configured API authentication credential (an API key or token) to access the Feegow endpoints.
- Network connectivity to the Feegow service must be ensured.
Troubleshooting
- Missing Required Filters: If any of the required filters (
data,profissional_id,unidade_id) are missing or invalid, the API may return errors or empty results. Ensure all required fields are correctly set. - API Authentication Errors: If the API credentials are incorrect or expired, the node will fail to authenticate. Verify that the API key/token is valid and properly configured in n8n.
- Network Issues: Connectivity problems can cause request failures. Check network access and proxy settings if applicable.
- Error Messages: The node throws errors prefixed with
Erro na operação listAvailableSchedules para appointments:followed by the API error message. Use this to diagnose issues related to parameters or API responses.
Links and References
- Feegow Clinic API Documentation (Please verify the official URL as this is a placeholder)
- n8n Documentation on Creating Custom Nodes
- General info on Healthcare Appointment Scheduling APIs
If you need further details about other operations or resources, feel free to ask!