Authorizations
Bearer authentication header of the form Bearer <token>
, where <token>
is your auth token.
Path Parameters
The slug of the dataset to add an item to
Example:
"my-dataset"
Body
application/json
The values for each column in this dataset row
Example:
{
"columnName1": "value1",
"columnName2": "value2"
}
The name of the dataset row
Example:
"Test case 1"
The ideal output for this dataset row, if any
Example:
"This is the expected output"
Additional metadata for this dataset row
Example:
{ "source": "api", "context": "testing" }