Actions58
- Acesso - Credenciais
- Canais - Listar
- Contato - Adicionar Etiqueta
- Contato - Adicionar Informações
- Contato - Consultar
- Contato - Editar Perfil
- Contato - Encaminhar
- Contato - Importar
- Contato - Listar Protocolos
- Contato - Listar Todos
- Contato - Mensagem - Enviar
- Contato - Mensagem - Enviar Imagem + Legenda
- Contato - Pesquisar
- Contato - Remover Etiqueta
- Contato - Status De WhatsApp
- Etiquetas - Listar Todos
- Extra - Cep - Pesquisar
- Extra - Cnpj - Pesquisar
- Extra - Coordenadas - Pesquisar
- Extra - Cpf - Pesquisar
- Extra - CSV - Formatar
- Extra - Nome - Pesquisar
- Extra - Titularidade - Pesquisar
- Extra - Transcrição - Documentos
- Extra - Transcrição - Imagem EN
- Extra - Transcrição - Imagem PT
- Grupos - Adicionar Contato
- Grupos - Listar Contatos
- Grupos - Listar Todos
- Grupos - Remover Contato
- Grupos - WhatsApp - Histórico
- Grupos - WhatsApp - Listar
- Grupos - WhatsApp - Membros
- Marketing - Campanha - Listar
- Marketing - Campanha - Resumo
- Marketing - Mensagem - Enviar
- Marketing - Mensagem - Listar
- Marketing - Mensagem - Status
- Produto - Categoria - Listar
- Produto - Listar
- Protocolo - Consultar
- Protocolo - Encaminhar - Recado
- Protocolo - Finalizar
- Protocolo - Listar - Todos
- Protocolo - Mensagem - Enviar
- Protocolo - Mensagem - Listar
- Protocolo - Observações - Adicionar
- Protocolo - Observações - Listar
- Protocolo - Pesquisar
- Recados - Listar - Todos
- Recados - Pesquisar
- Setor - Listar - Todos
- Templates - Listar - Todos
- Usuário - Agenda - Listar
- Usuário - Carteira - Adicionar
- Usuário - Carteira - Listar
- Usuário - Carteira - Remover
- Usuário - Listar - Todos
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
- Relacio Platform Documentation (example placeholder, replace with actual URL)
- n8n Documentation on Creating Custom Nodes
- Date formatting reference: ISO 8601 Date Format