Golden data sets

Create Columns in a Row

POST
/v2/datasets/{dataset_api_id}/rows/{row_key}/columns
x-api-key<token>

Authenticate using API Key in request header

In: header

Path Parameters

dataset_api_id*string

Unique identifier of the dataset

row_key*string

Key of the row

Request Body

application/json

columns*array<>

List of column name-value pairs to create

Response Body

application/json

curl -X POST "https://api.bem.ai/v2/datasets/string/rows/string/columns" \  -H "Content-Type: application/json" \  -d '{    "columns": [      {        "columnName": "string",        "value": {}      }    ]  }'
{
  "columns": [
    {
      "columnName": "string",
      "type": "file",
      "value": {
        "fileValue": {
          "inputType": "string",
          "s3URL": "string"
        },
        "stringValue": "string",
        "jsonValue": {}
      }
    }
  ],
  "error": "string"
}