Dataiku · Arazzo Workflow

Dataiku Teardown Project

Version 1.0.0

Verify a project, delete a dataset within it, then delete the project itself.

1 workflow 2 source APIs 1 provider
View Spec View on GitHub AnalyticsArtificial IntelligenceData PlatformData ScienceMachine-LearningArazzoWorkflows

Provider

dataiku

Workflows

teardown-project
Delete a dataset and then delete the project.
Verifies the project, deletes a dataset, then deletes the project.
3 steps inputs: apiKey, datasetName, projectKey outputs: deletedProjectKey
1
verifyProject
Confirm the project exists before deleting any of its contents.
2
deleteDataset
Delete the named dataset from the project.
3
deleteProject
Delete the project and all of its remaining contents.

Source API Descriptions

Arazzo Workflow Specification

Raw ↑
arazzo: 1.0.1
info:
  title: Dataiku Teardown Project
  summary: Verify a project, delete a dataset within it, then delete the project itself.
  description: >-
    Cleanly decommissions a Dataiku DSS project. The workflow confirms the
    project exists, deletes a named dataset inside it, and then deletes the
    project and all of its remaining contents. The delete steps assert the
    documented 204 No Content response. Every step inlines its request so the
    flow can be executed without opening the underlying OpenAPI description.
  version: 1.0.0
sourceDescriptions:
- name: datasetsApi
  url: ../openapi/dataiku-datasets-api-openapi.yml
  type: openapi
- name: projectsApi
  url: ../openapi/dataiku-projects-api-openapi.yml
  type: openapi
workflows:
- workflowId: teardown-project
  summary: Delete a dataset and then delete the project.
  description: >-
    Verifies the project, deletes a dataset, then deletes the project.
  inputs:
    type: object
    required:
    - apiKey
    - projectKey
    - datasetName
    properties:
      apiKey:
        type: string
        description: DSS API key passed as a Bearer token in the Authorization header.
      projectKey:
        type: string
        description: Project key to tear down.
      datasetName:
        type: string
        description: Name of the dataset to delete before deleting the project.
  steps:
  - stepId: verifyProject
    description: Confirm the project exists before deleting any of its contents.
    operationId: getProject
    parameters:
    - name: Authorization
      in: header
      value: Bearer $inputs.apiKey
    - name: projectKey
      in: path
      value: $inputs.projectKey
    successCriteria:
    - condition: $statusCode == 200
    outputs:
      projectKey: $response.body#/projectKey
  - stepId: deleteDataset
    description: Delete the named dataset from the project.
    operationId: deleteDataset
    parameters:
    - name: Authorization
      in: header
      value: Bearer $inputs.apiKey
    - name: projectKey
      in: path
      value: $inputs.projectKey
    - name: datasetName
      in: path
      value: $inputs.datasetName
    successCriteria:
    - condition: $statusCode == 204
  - stepId: deleteProject
    description: Delete the project and all of its remaining contents.
    operationId: deleteProject
    parameters:
    - name: Authorization
      in: header
      value: Bearer $inputs.apiKey
    - name: projectKey
      in: path
      value: $inputs.projectKey
    successCriteria:
    - condition: $statusCode == 204
  outputs:
    deletedProjectKey: $steps.verifyProject.outputs.projectKey

Work with this as data

Every workflow here is available over the APIs.io API and to AI agents over MCP.

MCP server

One button, every client — Claude, Cursor, VS Code and the rest.

https://apis.io/mcp

Tools for arazzo workflows

4 MCP tools reach this
  • find_arazzoBrowse and filter every workflow in the catalog.
  • apis_io_searchSTART HERE — APIs, providers and tags for one query, each with its total.
  • resolveTurn a domain, URL or GitHub org into the provider it belongs to.
  • find_cohortsEvery scored population of providers in the catalog.
All 92 tools →

Call it yourself

curl for this page
This workflow
curl "https://apis.io/api/v1/arazzo/dataiku-teardown-project-workflow"
All arazzo workflows
curl "https://apis.io/api/v1/arazzo?limit=25"

Discovery needs no key. Ratings and market analysis are Pro.

Get an API key

Free tier, no form to fill in. Signing in shares your email address with us — we store it to create your key and to recognise you if you sign in with another provider. See our Privacy Policy and Terms.

A second provider on the same verified email joins the account you already have.