Golden data sets

Create a Row in a Golden Data Set

POST
/v2/datasets/{dataset_api_id}/rows
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

id*string

Unique key for the row. Must match ^[a-zA-Z0-9_-]{1,256}$

columns*object

Map of column names to column values

Response Body

application/json

curl -X POST "https://api.bem.ai/v2/datasets/string/rows" \  -H "Content-Type: application/json" \  -d '{    "id": "string",    "columns": {}  }'
{
  "row": {
    "key": "string",
    "columns": {}
  },
  "error": "string"
}