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. Specifically for the Workspace resource and the Create Workspace operation, it enables creating new workspaces within Dataiku DSS.

Common scenarios where this node is beneficial include automating workspace management in Dataiku DSS projects, such as programmatically creating workspaces to organize datasets, applications, or HTML links relevant to a project or team.

For example, you might use this node to:

  • Automatically create a new workspace when a new project is initialized.
  • Organize different data science assets by creating dedicated workspaces via automation workflows.
  • Integrate workspace creation into larger CI/CD pipelines managing Dataiku DSS projects.

Properties

Name Meaning
Request Body JSON object representing the details of the workspace to create. This should conform to the expected API schema for workspace creation in Dataiku DSS.

The Request Body property is a JSON input where you specify the parameters and configuration for the new workspace. It typically includes fields like workspace name, description, and other settings as required by the Dataiku DSS API.

Output

The node outputs the response from the Dataiku DSS API call in the json field of the output item. For the "Create Workspace" operation, this will generally be a JSON object representing the newly created workspace, including its unique identifier and any metadata returned by the API.

If the API returns binary data (not typical for workspace creation), it would be provided in the binary field, but this operation primarily deals with JSON responses.

Dependencies

  • Requires an active connection to a Dataiku DSS instance.
  • Requires valid API credentials (an API key) for authenticating requests to 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 node throws an error about missing credentials, ensure that the Dataiku DSS API credentials are properly set up in n8n.
  • Required Parameters Missing: The node validates required parameters such as workspace key or request body content. Make sure all mandatory fields are provided.
  • API Errors: Errors returned from the Dataiku DSS API will be surfaced as node errors. Check the error message for details, which may indicate issues like invalid JSON in the request body or permission problems.
  • Network Issues: Ensure that the n8n instance can reach the Dataiku DSS server URL specified in the credentials.

Links and References


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

Discussion