Relacio - WhatsApp icon

Relacio - WhatsApp

Interação com a Plataforma de Relacionamento via WhatsApp - Relacio

Actions58

Overview

This node interacts with the "Relacio" platform, specifically providing an operation to list a user's schedule events within a specified date range. The "Usuário - Agenda - Listar" operation fetches calendar or agenda events for a given operator (user) between a start and end date, supporting pagination.

Common scenarios where this node is useful include:

  • Retrieving scheduled appointments or tasks assigned to a specific operator.
  • Integrating operator schedules into workflows for notifications, reporting, or synchronization with other calendar systems.
  • Automating follow-ups or reminders based on operator availability.

Example: You want to get all scheduled events for operator ID "12345" from July 1, 2020, to October 10, 2020, and process them in your workflow for sending reminders.

Properties

Name Meaning
ID do Operador The unique identifier of the operator whose schedule events you want to retrieve.
Data Inicial The start date of the period to query events for, formatted as YYYY-MM-DD.
Data Final The end date of the period to query events for, formatted as YYYY-MM-DD.
Página The page number of event results to return, starting at 1. Supports pagination of events.

Output

The output is a JSON array containing the schedule events for the specified operator within the date range. Each item in the array represents an individual event with its details as provided by the Relacio platform API.

If the node supports binary data output, it is not indicated in the provided code or properties, so the output is primarily JSON structured data representing schedule events.

Dependencies

  • Requires an API key credential for authentication with the Relacio platform.
  • The node depends on internal action methods (e.g., getOperatorScheduleAction) that handle the API requests to the Relacio service.
  • Proper configuration of the API credentials in n8n is necessary for successful execution.

Troubleshooting

  • Missing or invalid operator ID: Ensure the "ID do Operador" property is correctly set and corresponds to a valid operator in the Relacio system.
  • Date format errors: The "Data Inicial" and "Data Final" must be in the YYYY-MM-DD format; otherwise, the API may reject the request.
  • Pagination issues: If too many events exist, use the "Página" property to paginate through results.
  • Authentication failures: Verify that the API key credential is correctly configured and has sufficient permissions.
  • Empty results: Could indicate no events in the specified date range or incorrect parameters.

Error messages typically come from the underlying API calls and should be checked against the Relacio platform's documentation for resolution steps.

Links and References

Discussion