Golden data sets

Create or Update Rows in a Golden Data Set from Transformations

POST
/v2/datasets/{dataset_api_id}/rows/from-transformations
x-api-key<token>

Authenticate using API Key in request header

In: header

Path Parameters

dataset_api_id*string

Unique identifier of the dataset

Request Body

application/json

transformationQuery*

Query to filter which transformations to use

fieldMapping*

Mapping of transformation fields to dataset columns

Response Body

application/json

curl -X POST "https://api.bem.ai/v2/datasets/string/rows/from-transformations" \  -H "Content-Type: application/json" \  -d '{    "transformationQuery": {},    "fieldMapping": {}  }'
{
  "createdRows": [
    {
      "key": "string",
      "columns": {}
    }
  ],
  "updatedRows": [
    {
      "key": "string",
      "columns": {}
    }
  ],
  "error": "string"
}