Peliqan icon

Peliqan

Get data from Peliqan

Actions8

Overview

This node integrates with the Peliqan service to retrieve data related to various resources, including tables. Specifically, the "Table" resource with the "List" operation allows users to fetch a list of tables available in their Peliqan environment. This is useful for scenarios where you want to dynamically obtain table metadata or enumerate tables before performing further operations such as querying or updating data.

Practical examples include:

  • Automatically retrieving all tables to display them in a UI.
  • Using the list of tables to iterate over and perform batch processing.
  • Integrating with other workflows that require knowledge of existing tables in Peliqan.

Properties

Name Meaning
List Tables (Hidden) Triggers listing of tables when the resource is "table" and operation is "list".

Note: The only property relevant here is a hidden trigger property used internally to initiate the list operation for tables.

Output

The node outputs JSON data representing the list of tables retrieved from the Peliqan service. Each item in the output corresponds to a table object with its associated metadata as provided by the API.

If the node supports binary data output, it is not indicated in the provided code or properties, so the output is purely JSON.

Dependencies

  • Requires an API key credential for authenticating with the Peliqan API.
  • Connects to the base URL https://app.eu.peliqan.io/.
  • Uses standard HTTP headers for JSON content (Accept: application/json, Content-Type: application/json).
  • The node depends on internal routing logic (router.call(this)) which delegates execution based on resource and operation.

Troubleshooting

  • Authentication errors: Ensure the API key credential is correctly configured and has sufficient permissions.
  • Empty or missing table list: Verify that the Peliqan account contains tables and that the API endpoint is reachable.
  • Network issues: Check connectivity to https://app.eu.peliqan.io/.
  • Unexpected response format: Confirm that the Peliqan API version matches what the node expects.

Links and References

  • Peliqan Official Website
  • Peliqan API documentation (not provided in source; consult official docs for detailed API usage)

Discussion