Dataiku DSS icon

Dataiku DSS

Use the Dataiku DSS API

Actions364

Overview

This node integrates with the Dataiku DSS API, enabling users to perform a wide range of operations on Dataiku DSS resources directly from n8n workflows. Specifically for the Project Folder resource and the Move Project Folder operation, it allows moving an existing project folder into another project folder within the Dataiku DSS environment.

Common scenarios where this node is beneficial include:

  • Organizing project folders programmatically as part of automated workflows.
  • Managing project folder hierarchies without manual intervention in the Dataiku DSS UI.
  • Integrating project folder management with other automation tasks such as project creation or deployment.

Example use case:

  • Automatically move a project folder to a new parent folder after certain conditions are met in a workflow, helping maintain a clean and organized project structure.

Properties

Name Meaning
Folder ID The identifier of the project folder to move (source folder).
Query Parameters Optional additional query parameters to customize the API request.

The "Folder ID" property is required to specify which project folder will be moved. The "Query Parameters" collection can include various optional parameters that modify the behavior of the API call, though specific options depend on the API endpoint.

Output

The output of this operation is the JSON response returned by the Dataiku DSS API after attempting to move the project folder. This typically includes confirmation of the move action or details about the updated folder.

If the API returns binary data (not typical for this operation), it would be provided as binary output, but for the Move Project Folder operation, the output is JSON.

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 uses HTTP requests to communicate with the Dataiku DSS REST API endpoints.

Troubleshooting

  • Missing Credentials Error: If the node throws an error about missing credentials, ensure that you have configured the Dataiku DSS API credentials correctly in n8n.
  • Folder ID Required: The operation requires a valid Folder ID; if omitted or incorrect, the node will throw an error indicating the missing parameter.
  • API Errors: Errors returned from the Dataiku DSS API (e.g., permission denied, folder not found) will be surfaced as node errors. Verify that the API key has sufficient permissions and that the folder IDs are correct.
  • Network Issues: Connectivity problems between n8n and the Dataiku DSS server can cause request failures. Check network access and server availability.

Links and References


This summary focuses on the "Project Folder" resource and the "Move Project Folder" operation as requested, based on static analysis of the provided source code and input properties.

Discussion