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, enabling automation of various healthcare-related operations. Specifically, for the Paciente (Patient) resource and the Criar Paciente (Create Patient) operation, it allows users to create a new patient record in the Feegow system by providing essential patient details.
Common scenarios where this node is beneficial include:
- Automating patient registration workflows in clinics or hospitals.
- Integrating patient creation into broader healthcare management systems.
- Synchronizing patient data from external sources into Feegow automatically.
For example, when a new patient fills out an online form, this node can be used to automatically create their profile in Feegow without manual entry.
Properties
| Name | Meaning |
|---|---|
| Dados Do Paciente (patient_data) | A collection of patient information fields: - CPF: Patient's CPF number (required). - Data De Nascimento: Date of birth in YYYY-MM-DD format (optional). - Nome: Patient's full name (required). - Telefone: Patient's phone number (optional). |
Output
The node outputs JSON data representing the response from the Feegow API after attempting to create the patient. This typically includes confirmation details such as the newly created patient's ID and other relevant metadata returned by the API.
No binary data output is produced by this operation.
Dependencies
- Requires an API key credential for authenticating with the Feegow Clinic API.
- The node must be configured with valid Feegow API credentials within n8n.
- Network access to the Feegow API endpoints is necessary.
Troubleshooting
- Missing Required Fields: If required fields like CPF or Nome are not provided, the API may return an error. Ensure these fields are correctly filled.
- Invalid Date Format: The "Data De Nascimento" field must follow the YYYY-MM-DD format if provided; otherwise, the API might reject the request.
- Authentication Errors: Verify that the API key credential is correctly set up and has sufficient permissions.
- API Endpoint Errors: Network issues or incorrect endpoint usage could cause failures. Check connectivity and ensure the node is using the correct resource and operation.
- Error Messages: Errors thrown by the node will indicate the operation and resource involved, e.g.,
Erro na operação createPatient para patient: <error message>. Use this to identify and fix input or configuration issues.
Links and References
- Feegow Clinic API Documentation (official API docs, if publicly available)
- n8n Documentation on Creating Custom Nodes
- General best practices for Healthcare Data Integration