Dataiku · Arazzo Workflow

Dataiku Create Govern Artifact with Custom Fields

Version 1.0.0

Create a governed artifact under a blueprint, set its custom field values, and read them back.

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

Provider

dataiku

Workflows

create-govern-artifact
Create an artifact, set custom fields, and confirm them.
Creates a governed artifact under a blueprint, sets custom field values, then reads the custom fields back.
3 steps inputs: apiKey, blueprintId, blueprintVersionId, customFields, name outputs: artifactId, fields
1
createArtifact
Create a new governed artifact under the supplied blueprint.
2
setCustomFields
Write the supplied custom field values to the artifact.
3
confirmCustomFields
Read the custom field values back to confirm they were applied.

Source API Descriptions

Arazzo Workflow Specification

Raw ↑
arazzo: 1.0.1
info:
  title: Dataiku Create Govern Artifact with Custom Fields
  summary: Create a governed artifact under a blueprint, set its custom field values, and read them back.
  description: >-
    Registers a governed artifact in Dataiku Govern and populates its metadata.
    The workflow creates an artifact under a blueprint, writes a set of custom
    field values to the artifact, and reads the custom field values back to
    confirm they were applied. Every step inlines its request so the flow can be
    executed without opening the underlying OpenAPI description.
  version: 1.0.0
sourceDescriptions:
- name: artifactsApi
  url: ../openapi/dataiku-artifacts-api-openapi.yml
  type: openapi
- name: customFieldsApi
  url: ../openapi/dataiku-custom-fields-api-openapi.yml
  type: openapi
workflows:
- workflowId: create-govern-artifact
  summary: Create an artifact, set custom fields, and confirm them.
  description: >-
    Creates a governed artifact under a blueprint, sets custom field values,
    then reads the custom fields back.
  inputs:
    type: object
    required:
    - apiKey
    - name
    - blueprintId
    - customFields
    properties:
      apiKey:
        type: string
        description: Govern API key passed as a Bearer token in the Authorization header.
      name:
        type: string
        description: Display name for the artifact.
      blueprintId:
        type: string
        description: Blueprint to associate the artifact with.
      blueprintVersionId:
        type: string
        description: Specific blueprint version to use.
      customFields:
        type: object
        description: Custom field values to apply to the artifact.
  steps:
  - stepId: createArtifact
    description: Create a new governed artifact under the supplied blueprint.
    operationId: createArtifact
    parameters:
    - name: Authorization
      in: header
      value: Bearer $inputs.apiKey
    requestBody:
      contentType: application/json
      payload:
        name: $inputs.name
        blueprintId: $inputs.blueprintId
        blueprintVersionId: $inputs.blueprintVersionId
    successCriteria:
    - condition: $statusCode == 200
    outputs:
      artifactId: $response.body#/id
  - stepId: setCustomFields
    description: Write the supplied custom field values to the artifact.
    operationId: setArtifactCustomFields
    parameters:
    - name: Authorization
      in: header
      value: Bearer $inputs.apiKey
    - name: artifactId
      in: path
      value: $steps.createArtifact.outputs.artifactId
    requestBody:
      contentType: application/json
      payload: $inputs.customFields
    successCriteria:
    - condition: $statusCode == 200
  - stepId: confirmCustomFields
    description: Read the custom field values back to confirm they were applied.
    operationId: getArtifactCustomFields
    parameters:
    - name: Authorization
      in: header
      value: Bearer $inputs.apiKey
    - name: artifactId
      in: path
      value: $steps.createArtifact.outputs.artifactId
    successCriteria:
    - condition: $statusCode == 200
    outputs:
      fields: $response.body
  outputs:
    artifactId: $steps.createArtifact.outputs.artifactId
    fields: $steps.confirmCustomFields.outputs.fields

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-create-govern-artifact-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.