Page tree

Release 6.0.2


Contents:

   

For the latest updates on available API endpoints and documentation, see api.trifacta.com.

As of Release 6.4, the v3 APIs are End of Life (EOL). Before using this release or a later one, you should migrate to using the latest available API version. For more information, see API Version Support Matrix.
Latest version of this endpoint: API ImportedDatasets Post AddToFlow v4.

Contents:


Add the specified imported dataset to a flow based on its internal identifier.

Version: v3

Required Permissions

NOTE: Each request to the Designer Cloud Powered by Trifacta® platform must include authentication credentials. See https://api.trifacta.com/ee/6.0/index.html#section/Authentication.

Request

Request Type: POST

Endpoint:

/v3/importedDatasets/<id>/addToFlow

where:

ParameterDescription
<id>Internal identifier for the imported dataset

Request URI - Example:

/v3/importedDatasets/4/addToFlow

Request Body:

{
    "flow": {
        "id": 4
    }
}

Response

Response Status Code - Success: 201 - Created

Response Body:

{
  "id": 14,
  "createdBy": 1,
  "updatedBy": 1,
  "scriptId": 7,
  "flowId": 4,
  "wrangled": false,
  "updatedAt": "2017-06-28T19:38:29.275Z",
  "createdAt": "2017-06-28T19:38:29.016Z",
  "flowNodeId": null,
  "deleted_at": null,
  "activesampleId": 15
}

Reference

PropertyDescription
idInternal identifier for the new wrangled dataset.
createdByInternal identifier of the user who created the flow.
updatedByInternal identifier of the user who performed the update.
scriptId

Internal identifier for the recipe for the dataset.

If null, the dataset has not been wrangled in the Transformer page.

flowIdInternal identifier of the flow that contains this dataset
wrangledIf true, this dataset is a wrangled dataset.
updatedAt

Timestamp for when the dataset was updated.

createdAt

Timestamp for when the dataset was created.

flowNodeIdInternal identifier of the dataset within the flow.
deleted_at

Timestamp for when the dataset was deleted.

If null, the dataset has not been deleted.

activesampleId

Internal identifier for the currently active sample for the dataset.

If null, there is no currently active sample for the dataset.

For more information on the other properties, see API ImportedDatasets Get v3.

This page has no comments.