Actions23
- Validar WhatsApp
- Validar CPF
- Validar Data
- Transferir para Fila
- Transferir para Atendente
- Fechar Ticket
- Enviar Mensagem
- Enviar Botões
- Enviar Lista
- Enviar Mídia com Caption
- Enviar Base64
- Vincular Tag
- Criar Tag
- Listar Kanbans
- Vincular Kanban
- Vincular Carteira
- Listar Serviços
- Listar Usuários Disponíveis
- Listar Horários Disponíveis
- Listar Agendamentos
- Criar Agendamento
- Cancelar Agendamento
- Gerar Link do Calendário (.ics)
Overview
This node integrates with the Digitalsac API to perform various operations related to customer service and scheduling management. Specifically, the "Listar Agendamentos" (List Schedules) operation retrieves a list of scheduled appointments for a given date, optionally filtered by a user ID.
Common scenarios where this node is beneficial include:
- Retrieving daily appointment schedules for a team or individual user.
- Filtering schedules by specific users to manage workloads or availability.
- Integrating appointment data into workflows for notifications, reporting, or calendar synchronization.
For example, a customer support manager could use this node to fetch all appointments scheduled for August 8, 2025, and then trigger reminders or follow-up actions based on that data.
Properties
| Name | Meaning |
|---|---|
| Data | Date in the format YYYY-MM-DD to list appointments for that specific day. |
| User ID (Opcional) | Optional user ID to filter the listed appointments by a specific user. If omitted, lists all users' appointments for the date. |
Output
The node outputs an array of JSON objects representing the response from the Digitalsac API's schedule listing endpoint. Each item in the output corresponds to the API's returned data structure for scheduled appointments on the specified date and user filter.
If an error occurs during the API request, the output will contain a JSON object with an error field describing the issue.
The node does not output binary data for this operation.
Dependencies
- Requires an API key credential for authenticating with the Digitalsac API.
- The node uses the base URL and token from the configured credentials to make HTTP requests.
- No additional environment variables are required beyond the API authentication setup.
Troubleshooting
- Invalid Date Format: Ensure the "Data" property is provided in the exact YYYY-MM-DD format. Incorrect formats may cause the API to return errors or empty results.
- User ID Filter Issues: If filtering by user ID, verify that the ID exists and is valid in the Digitalsac system; otherwise, the result may be empty.
- API Authentication Errors: If the API key or token is invalid or expired, the node will return an authentication error. Recheck and update the credentials.
- Network or API Errors: Network issues or API downtime can cause request failures. Check connectivity and Digitalsac service status.
- Error Messages: The node surfaces API error messages in the output under an
errorfield. Review these messages to identify issues such as malformed requests or permission problems.
Links and References
- Digitalsac API Documentation (example placeholder, replace with actual URL if available)
- n8n Documentation on HTTP Request Node for understanding how API calls are made within nodes.