Lectful Central icon

Lectful Central

Interact with the Lectful Central API for admin operations

Overview

The "BuilderX AI Integration" resource with the "Get All AI Manifests" operation allows users to retrieve a paginated list of all available AI manifests related to BuilderX widgets from the Lectful Central API. This node is useful for scenarios where you want to programmatically access metadata or configuration manifests that describe AI capabilities or templates for BuilderX widgets, enabling automation or integration workflows that depend on these manifests.

Practical examples include:

  • Fetching all AI manifests to display available AI-powered widget templates in a custom dashboard.
  • Automating synchronization of AI manifest data into another system for analysis or reporting.
  • Using the manifests as input for further processing or template application within BuilderX.

Properties

Name Meaning
Authentication Mode Choose how to authenticate with the Lectful Central API:
- Use Stored Credentials
- Manual Configuration (provide base URL and API key manually)
Credentials Note Notice shown when using Manual Configuration mode explaining credential overrides.
Base URL Override Optional base URL to override the stored credential's base URL (without /api/v1).
API Key Override Optional API key to override the stored credential's API key.
Page Page number for pagination of AI manifests (default: 1).
Per Page Number of items per page for pagination (default: 10).

Output

The output is an array of JSON objects, each representing the response from the Lectful Central API for the requested AI manifests. The structure corresponds directly to the API's response for the /admin/builderx/ai-manifest endpoint and includes details about the AI manifests available for BuilderX widgets.

If the API returns a string, the node attempts to parse it as JSON; otherwise, the raw string is returned.

No binary data output is involved in this operation.

Dependencies

  • Requires access to the Lectful Central API.
  • Requires either stored credentials configured in n8n or manual entry of the Base URL and API key.
  • The API key must have permissions to access the BuilderX AI manifests endpoint.
  • No additional external dependencies beyond HTTP access to the Lectful Central API.

Troubleshooting

  • Missing or invalid credentials: If neither stored credentials nor manual overrides are provided correctly, the node will throw an error indicating missing or invalid credentials. Ensure credentials are properly configured or manual parameters are set.
  • Base URL Override required in manual mode: When using manual authentication mode, the Base URL Override must be provided; otherwise, an error is thrown.
  • API Key Override required in manual mode: Similarly, the API key must be provided in manual mode.
  • Invalid pagination parameters: Providing non-numeric or out-of-range values for Page or Per Page may cause unexpected API errors or empty results.
  • API connectivity issues: Network problems or incorrect base URLs can cause request failures.
  • Unexpected API response format: If the API returns a non-JSON string, the node tries to parse it but may fail silently, returning the raw string instead.

To resolve errors:

  • Verify credentials and manual parameters.
  • Check network connectivity and API availability.
  • Confirm correct usage of pagination parameters.
  • Review API documentation for any changes in endpoint behavior.

Links and References

  • Lectful Central API Documentation (general reference for endpoints and authentication)
  • BuilderX official documentation for AI manifests and widget templates (for understanding manifest content and usage)

(Note: Specific URLs are not included due to lack of explicit references in the source code.)

Discussion