Golden data sets

Update a Row in a Golden Data Set

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

id?|

New 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 PATCH "https://api.bem.ai/v2/datasets/string/rows/string" \  -H "Content-Type: application/json" \  -d '{    "columns": {}  }'
{
  "row": {
    "key": "string",
    "columns": {}
  },
  "error": "string"
}