Actions20
Overview
This node integrates with the Consultorio Live API, a platform for managing clinics and medical offices. Specifically, the "Paciente" (Patient) resource with the "Get Many" operation allows users to retrieve multiple patient records from the system. This is useful for scenarios such as listing patients, searching for patients by name or document, or paginating through large sets of patient data.
Practical examples include:
- Fetching a list of patients to display in a dashboard.
- Searching patients by partial names or document numbers.
- Retrieving a specific page of patient results when dealing with large datasets.
Properties
| Name | Meaning |
|---|---|
| Parâmetros De Busca | A collection of search parameters to filter and paginate patient results: |
| - Página | Page number of the results to retrieve (default 1). |
| - Limite | Maximum number of patient records to return per request (minimum 1, default 50). |
| - Busca | Search string to filter patients by name or document number. |
Output
The node outputs JSON data containing an array of patient records matching the search criteria. Each item in the output corresponds to a patient object retrieved from the Consultorio Live API. The exact structure of each patient object depends on the API response but typically includes patient details such as name, document, contact information, and other relevant fields.
There is no indication that this node outputs binary data.
Dependencies
- Requires an API key credential for authenticating with the Consultorio Live API.
- The base URL for the API is configured via credentials.
- The node sends HTTP requests with JSON content type and expects JSON responses.
Troubleshooting
- Empty results: If no patients are returned, verify that the search parameters are correct and that patients exist matching those filters.
- Invalid pagination: Ensure the "Página" (page) and "Limite" (limit) values are positive integers; otherwise, the API may reject the request.
- Authentication errors: Confirm that the API key credential is valid and has the necessary permissions.
- API connectivity issues: Check network access and the correctness of the base URL configured in credentials.
Links and References
- Consultorio Live official API documentation (not provided here, but recommended to consult for detailed API schema and authentication setup).