Dataiku DSS icon

Dataiku DSS

Use the Dataiku DSS API

Actions364

Overview

This node integrates with the Dataiku DSS API, allowing users to manage various aspects of their Dataiku projects programmatically within n8n workflows. Specifically, for the API Service resource and the Generate Package operation, it enables generating a package for an API service within a specified project.

Typical use cases include automating the packaging process of API services in Dataiku DSS as part of CI/CD pipelines or scheduled workflows. For example, after updating an API service, you can automatically generate its package to prepare it for deployment or further processing.

Properties

Name Meaning
Project Key The unique key identifying the Dataiku project containing the API service.
Service ID The identifier of the API service for which the package will be generated.
Package ID The identifier of the specific package to generate within the API service.

These properties are required to specify exactly which API service package to generate within a given project.

Output

The node outputs the response from the Dataiku DSS API call related to the package generation. The output is provided as JSON data representing the result of the generate package request.

If the operation involves downloading archives or files (not applicable specifically to Generate Package), the node can output binary data representing those files. However, for the Generate Package operation, the output is JSON indicating success or details about the generated package.

Dependencies

  • Requires valid Dataiku DSS API credentials, including:
    • The URL or address of the Dataiku DSS server.
    • A user API key for authentication.
  • The node uses HTTP requests to communicate with the Dataiku DSS REST API.
  • No additional external dependencies beyond the configured Dataiku DSS API credentials.

Troubleshooting

  • Missing Credentials Error: If the node throws "Missing Dataiku DSS API Credentials," ensure that the API key credential is properly configured in n8n.
  • Required Parameter Errors: The node validates required parameters such as Project Key, Service ID, and Package ID. Missing any of these will cause errors like "Project Key is required." Make sure all required fields are filled.
  • API Request Failures: Network issues, incorrect server URLs, or invalid API keys may cause request failures. Verify connectivity and credentials.
  • Unexpected Response Format: If the API returns unexpected data or errors, check the Dataiku DSS server logs and API documentation for more details.

Links and References


This summary focuses on the API Service resource and the Generate Package operation as requested, based on static analysis of the provided source code and property definitions.

Discussion