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 programmatically within n8n workflows. Specifically for the Project resource and the Update Project Tags operation, it allows updating the tags associated with a given project in Dataiku DSS.

Common scenarios where this node is beneficial include:

  • Automating project metadata management such as tagging projects based on external triggers or data.
  • Synchronizing project tags across multiple projects or environments.
  • Integrating project tag updates into larger automation pipelines involving Dataiku DSS projects.

For example, you could use this node to automatically add or update tags on a project when a new dataset is added or when a project reaches a certain stage in your data pipeline.

Properties

Name Meaning
Project Key The unique identifier key of the project whose tags you want to update.
Request Body A JSON object representing the body of the request, typically containing the tags data.

The Request Body property expects a JSON structure that defines the tags to be updated on the project. This should conform to the Dataiku DSS API specification for updating project tags.

Output

The node outputs the response from the Dataiku DSS API call in the json field of the output item. This typically includes confirmation of the update or details of the updated tags.

If the operation involves downloading files or binary content (not applicable specifically for updating project tags), the node would output binary data accordingly.

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 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 required API authentication token for Dataiku DSS in n8n.
  • Project Key Required: The operation requires a valid project key; if omitted, the node will throw an error.
  • Invalid JSON in Request Body: Ensure the JSON provided in the Request Body is well-formed and matches the expected schema for updating project tags.
  • API Errors: Any errors returned by the Dataiku DSS API (e.g., permission denied, invalid project key) will be surfaced by the node. Check the error message for details and verify your permissions and input parameters.

Links and References


Note: This summary focuses on the "Project" resource and the "Update Project Tags" operation as requested. The node supports many other resources and operations beyond this scope.

Discussion