Consultorio Live icon

Consultorio Live

Interagir com a API do Consultorio Live para gestão de clínicas e consultórios

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 "Obter" (Get) operation allows users to retrieve detailed information about a specific patient by their ID. This is useful in scenarios where you need to fetch patient data for further processing, display, or integration with other systems.

Practical examples include:

  • Fetching patient details before scheduling an appointment.
  • Retrieving patient information to update records or verify identity.
  • Integrating patient data into external reporting or analytics tools.

Properties

Name Meaning
ID Do Paciente The unique identifier of the patient whose information you want to retrieve. This is a required string input.

Output

The node outputs JSON data containing the patient's details as returned by the Consultorio Live API. The structure typically includes fields such as patient name, contact information, medical history references, and other relevant patient attributes.

If the API supports it, binary data output is not indicated for this operation; the output is purely JSON-based patient information.

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 headers.

Troubleshooting

  • Common issues:

    • Invalid or missing patient ID will result in errors or empty responses.
    • Authentication failures due to incorrect or expired API keys.
    • Network connectivity problems preventing access to the Consultorio Live API.
  • Error messages:

    • "Unauthorized" or similar indicates authentication issues; verify API credentials.
    • "Not Found" or equivalent suggests the patient ID does not exist; confirm the ID is correct.
    • Timeout or network errors require checking internet connection and API availability.

Links and References

  • Consultorio Live API documentation (refer to official site or developer portal for detailed API specs).
  • n8n documentation on creating and using custom nodes with API integrations.

Discussion