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 Flows Create v4.

Contents:


Create a new flow with specified name.

NOTE: You cannot add datasets to the flow through this endpoint. Moving pre-existing datasets into a flow is not supported in this release. Create the flow first and then when you create the datasets, associate them with the flow at the time of creation.


Version:
v3

Required Permissions

The authenticated user must be an admin.

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/flows/

 

Request Body:

name value is required.

{
  "name": "My Flow",
  "description": "This is my flow."
}

Response

Response Status Code - Success: 201 - Created

Response Body Example:

{
  "id": 6,
  "name": "My Flow",
  "description": "This is my flow.",
  "createdBy": 1,
  "updatedBy": 1,
  "updatedAt": "2017-02-17T17:08:57.848Z",
  "createdAt": "2017-02-17T17:08:57.848Z"
}

Reference

For more information on the properties of a flow, see API Flows Get v3.

 

This page has no comments.