Dataiku DSS icon

Dataiku DSS

Use the Dataiku DSS API

Actions364

Overview

This node integrates with the Dataiku DSS API, allowing users to perform a wide range of operations on various Dataiku DSS resources such as projects, datasets, dashboards, models, wikis, and more. It is designed to facilitate automation and interaction with Dataiku DSS from within n8n workflows.

For the Wiki - Get Wiki operation specifically, the node retrieves wiki information for a specified project in Dataiku DSS. This can be useful for automating documentation retrieval, integrating wiki content into other systems, or monitoring wiki updates programmatically.

Practical Examples

  • Automatically fetch the wiki content of a project to include it in reports or notifications.
  • Synchronize wiki data with external knowledge bases or collaboration tools.
  • Trigger downstream processes based on changes or contents of the wiki.

Properties

Name Meaning
Project Key The unique identifier key of the Dataiku DSS project whose wiki you want to access.

Note: The provided properties JSON shows only "Project Key" relevant for the "Get Wiki" operation under the "wiki" resource.

Output

The output of the Get Wiki operation is a JSON object representing the wiki content of the specified project. The exact structure depends on the Dataiku DSS API response but typically includes:

  • Wiki pages and their metadata.
  • Content of the wiki articles.
  • Possibly hierarchical or structured representation of the wiki.

No binary data output is indicated for this operation.

Dependencies

  • Requires an active connection to a Dataiku DSS instance.
  • Requires valid API credentials (an API key) for authentication with the Dataiku DSS API.
  • The node expects the Dataiku DSS server URL and user API key to be configured in the credentials.

Troubleshooting

  • Missing Credentials Error: If the API credentials are not set or invalid, the node will throw an error indicating missing credentials. Ensure that the API key credential is properly configured.
  • Missing Required Parameters: The node validates required parameters like "Project Key" and "Article ID" (for some wiki operations). Omitting these will cause errors. Always provide necessary inputs.
  • API Request Failures: Network issues, incorrect server URLs, or insufficient permissions may cause API call failures. Check connectivity and user permissions on the Dataiku DSS instance.
  • Parsing Errors: If the API returns unexpected data formats, JSON parsing might fail. This usually indicates an issue with the API response or endpoint.

Links and References


This summary focuses on the "Wiki" resource and the "Get Wiki" operation as requested, based on static analysis of the provided source code and property definitions.

Discussion