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, which is designed for managing clinics and medical offices. Specifically, the "Obter" (Get) operation under the "Procedimento" (Procedure) resource retrieves detailed information about a specific medical procedure by its ID. This functionality is useful in scenarios where you need to fetch up-to-date data about procedures, such as displaying procedure details in a patient management system or verifying procedure codes before billing.

Practical examples include:

  • Retrieving procedure details to display in a clinic's scheduling interface.
  • Validating procedure information before generating invoices.
  • Synchronizing procedure data between Consultorio Live and other healthcare software.

Properties

Name Meaning
ID Do Procedimento The unique identifier of the procedure to retrieve. This is a required string input.

Output

The node outputs JSON data representing the requested procedure's details. The structure typically includes fields such as procedure name, code, description, pricing, and any other metadata provided by the Consultorio Live API for that procedure.

If the node supports binary data output, it would generally relate to attachments or documents linked to the procedure, but based on the provided code and context, the output is primarily JSON.

Dependencies

  • Requires an active connection to the Consultorio Live API.
  • Needs an API authentication token or key configured in n8n credentials to authorize requests.
  • The base URL for the API is dynamically set from the credentials configuration.
  • The node expects the API to respond with JSON-formatted data.

Troubleshooting

  • Missing or invalid Procedure ID: Since the procedure ID is required, ensure it is provided and correctly formatted. An empty or incorrect ID will likely cause the API request to fail.
  • Authentication errors: If the API key or token is missing, expired, or invalid, the node will not be able to connect. Verify credential setup in n8n.
  • API connectivity issues: Network problems or incorrect base URL settings can prevent successful API calls.
  • Unexpected API responses: Changes in the Consultorio Live API might affect the response format. Check for updates or changes in the API documentation if parsing errors occur.

Links and References

Discussion