Contents:
Get the specified wrangled dataset.
Tip: In the Designer Cloud application UI, the WrangledDataset
object is called a recipe
.
Version: v4
Required Permissions
NOTE: Each request to the Designer Cloud Powered by Trifacta® platform must include authentication credentials. See https://api.trifacta.com/ee/6.4/index.html#section/Authentication.
Request
Request Type: GET
Endpoint:
/v4/wrangledDatasets/<id>
Endpoint with embedded reference:
Use the following endpoint to embed information about the flow that contains the dataset in the response body.
/v4/wrangledDatasets/<id>?embed=flow
where:
Parameter | Description |
---|---|
<id> | Internal identifier for the wrangled dataset |
Request URI - Example:
/v4/wrangledDatasets/6/
Query parameter reference:
The following query parameters can be submitted with this endpoint:
Query Parameter | Data Type | Description |
---|---|---|
embed | string | Comma-separated list of objects to include part of the response. |
includeDeleted | string | If set to |
For more information, see API Common Query Parameters v4.
Request Body:
Empty.
Response
Response Status Code - Success: 200 - OK
Response Body Example:
{ "id": 6, "wrangled": true, "createdAt": "2018-02-06T19:43:02.791Z", "updatedAt": "2018-02-06T19:43:02.838Z", "recipe": { "id": 6 }, "name": "POS-r01", "description": null, "referenceInfo": null, "activeSample": { "id": 6 }, "creator": { "id": 1 }, "updater": { "id": 1 }, "flow": { "id": 1 } }
Response Body Example with embedded reference:
{ "id": 6, "wrangled": true, "createdAt": "2018-02-06T19:43:02.791Z", "updatedAt": "2018-02-06T19:43:02.838Z", "flow": { "id": 1, "name": "2013 POS", "description": null, "createdAt": "2018-02-06T19:42:55.091Z", "updatedAt": "2018-02-06T19:42:55.091Z", "creator": { "id": 1 }, "updater": { "id": 1 } }, "recipe": { "id": 6 }, "name": "POS-r01", "description": null, "referenceInfo": null, "activeSample": { "id": 6 }, "creator": { "id": 1 }, "updater": { "id": 1 } }
Reference
Wrangled Dataset:
These properties apply to the source of the wrangled dataset.
Property | Description |
---|---|
id | Internal identifier of the wrangled dataset |
wrangled | If true , this dataset is a wrangled dataset |
createdAt | Timestamp for when the dataset was imported |
updatedAt | Timestamp for when the dataset was last updated |
script | Internal identifier of the recipe associated with this dataset |
name | Internal name of the wrangled dataset |
description | User-friendly description for the wrangled dataset |
activeSample | Internal identifier of the currently active sample for this dataset |
creator | Internal identifier of the user who created the wrangled dataset |
updater | Internal identifier of the user who last updated the wrangled dataset |
flow | Internal identifier of the flow that contains this dataset |
Embedded Flow:
For more information on the embedded flow properties, see API Flows Get v4.
This page has no comments.