Modify the specified wrangled dataset.

Tip: In the UI, the WrangledDataset object is called a recipe.

Version:  v4

Required Permissions

Request

Request Type: PATCH

Endpoint:

/v4/wrangledDatasets/<id>

where:

ParameterDescription
<id>Internal identifier for the wrangled dataset

Request URI - Example:

/v4/wrangledDataset/12

Request Body:

Only the name and description properties should be modified. Modified properties must be included in the request. In the following example, the name and the description of the wrangled dataset are modified:

{
  "name": "Wrangled DS 2"
  "description": "This is my wrangled dataset #2."
}

Response

Response Status Code - Success:  200 - OK

Response Body Example:

{
    "id": 12,
    "updater": {
        "id": 1
    },
    "updatedAt": "2019-02-14T23:08:44.984Z"
}

Reference

For more information on the properties of a wrangled dataset, see API WrangledDatasets Get v4.