etiquetas.io icon

etiquetas.io

etiquetas.io

Overview

This node integrates with the etiquetas.io platform, specifically providing access to statistics and logs related to ESL (Electronic Shelf Labels). The "ESL Logs" operation under the "Estatísticas E Log" resource allows users to retrieve filtered log data about ESL activities. This is useful for monitoring ESL events, troubleshooting issues, or analyzing usage patterns in retail environments where electronic shelf labels are deployed.

Practical examples include:

  • Fetching ESL logs for a specific store within a date range to audit label updates.
  • Paginating through ESL logs to review recent activity.
  • Filtering logs by store ID to isolate data relevant to a particular location.

Properties

Name Meaning
Filtros A collection of filters to refine the ESL logs query:
- storeId Select a store either from a searchable list or by entering its numeric ID.
- Page The page number of results to retrieve (default is 1).
- Size Number of log entries per page (default is 10).
- startDate Start date/time to filter logs from (optional).
- endDate End date/time to filter logs until (optional).

Output

The node outputs JSON data containing the ESL logs matching the specified filters. Each log entry typically includes details such as timestamps, event types, associated store information, and other relevant metadata about ESL activities.

If binary data is returned (not indicated explicitly here), it would represent raw files or attachments related to the logs, but this node primarily deals with JSON structured log data.

Dependencies

  • Requires an API key credential for etiquetas.io to authenticate requests.
  • Uses internal helper methods to fetch stores for the storeId selector.
  • Relies on etiquetas.io's REST API endpoints for retrieving ESL logs.
  • No additional external dependencies beyond the etiquetas.io service and n8n environment.

Troubleshooting

  • Invalid Store ID: If the storeId filter is set incorrectly (non-numeric or invalid), the node may return errors or empty results. Ensure the store ID is valid and numeric.
  • Authentication Errors: Missing or incorrect API credentials will cause authentication failures. Verify that the API key credential is correctly configured.
  • Date Range Issues: Providing an invalid or reversed date range (startDate after endDate) might result in no data or errors.
  • Pagination Limits: Requesting pages beyond available data will return empty results; adjust page and size accordingly.
  • API Rate Limits: Excessive requests may be throttled by etiquetas.io; implement retries or backoff if needed.

Links and References

Discussion