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 resources. Specifically for the Workspace resource and the Get Workspace Objects operation, it enables listing all objects contained within a specified workspace. This is useful for scenarios where you want to programmatically retrieve and inspect the contents of a workspace, such as datasets, applications, or HTML links that have been added to it.

Practical examples include:

  • Automating audits or reports of workspace contents.
  • Triggering workflows based on the presence or absence of certain objects in a workspace.
  • Synchronizing workspace contents with other systems.

Properties

Name Meaning
Workspace Key The unique identifier (key) of the workspace from which to list objects.

Output

The node outputs an array of JSON objects representing the workspace objects retrieved from the Dataiku DSS API. Each item corresponds to one object in the workspace and contains its details as returned by the API.

If the operation involves downloading files or binary content (not applicable for this specific operation), the node would output binary data prepared accordingly.

Dependencies

  • Requires an active connection to a Dataiku DSS instance.
  • Needs valid API credentials including the DSS server URL and a user API key.
  • The node uses HTTP requests to interact with the Dataiku DSS REST API.
  • No additional external services are required beyond the configured Dataiku DSS API access.

Troubleshooting

  • Missing Credentials Error: If the node throws an error about missing API credentials, ensure that the Dataiku DSS API credentials are properly configured in n8n.
  • Required Parameter Errors: The node validates required parameters like "Workspace Key". Missing these will cause errors; provide all mandatory inputs.
  • API Request Failures: Network issues, incorrect server URLs, or invalid API keys can cause request failures. Verify connectivity and credential correctness.
  • Unexpected Response Format: If the API response cannot be parsed as JSON, check if the API endpoint or operation is correct and supported.
  • Permission Issues: Ensure the API key has sufficient permissions to access the workspace and its objects.

Links and References


This summary focuses on the Workspace resource and the Get Workspace Objects operation as requested, based on static analysis of the provided source code and input properties.

Discussion