Actions20
Overview
This node integrates with the Consultorio Live API to manage clinical and medical office data. Specifically, the "Prontuário" (Medical Record) resource with the "Obter" (Get) operation allows users to retrieve detailed information about a specific medical record by its ID. This is useful in scenarios where you need to fetch patient medical history or details stored in the system for review, reporting, or further processing.
For example, a healthcare application could use this node to pull up a patient's medical record during a consultation or to synchronize records between systems.
Properties
| Name | Meaning |
|---|---|
| ID Do Prontuário | The unique identifier of the medical record to retrieve. This is a required string input. |
Output
The node outputs JSON data representing the medical record corresponding to the provided ID. The structure typically includes all relevant fields of the medical record as returned by the Consultorio Live API, such as patient details, clinical notes, dates, and other associated metadata.
No binary data output is indicated.
Dependencies
- Requires an active connection to the Consultorio Live API.
- Needs an API authentication token or key configured in the node's credentials to authorize requests.
- The base URL for the API is taken from the credential configuration.
Troubleshooting
Common issues:
- Invalid or missing medical record ID will cause the request to fail.
- Authentication errors if the API key or token is incorrect or expired.
- Network connectivity problems preventing access to the Consultorio Live API.
Error messages:
- "Medical record not found": Verify that the provided ID exists in the system.
- "Unauthorized" or "Authentication failed": Check the API credentials and re-authenticate.
- Timeout or network errors: Ensure stable internet connection and correct API endpoint.
Links and References
- Consultorio Live API documentation (refer to official API docs for detailed schema and endpoints)
- n8n documentation on creating and using custom nodes with API integrations