curl --request PUT \
--url https://api.getmaxim.ai/v1/datasets/entries \
--header 'Content-Type: application/json' \
--header 'x-maxim-api-key: <api-key>' \
--data '
{
"workspaceId": "<string>",
"datasetId": "<string>",
"entries": [
{
"rowNo": 2,
"cells": [
{
"columnId": "<string>",
"value": {
"type": "text",
"payload": "<string>"
}
}
]
}
]
}
'{
"data": [
{
"id": "<string>",
"rowNo": 123,
"createdAt": "<string>",
"cells": [
{
"id": "<string>",
"columnId": "<string>",
"value": {
"type": "<string>",
"payload": "<string>"
},
"createdAt": "<string>",
"deletedAt": "<unknown>",
"updatedAt": "<string>"
}
]
}
]
}Update dataset entries
curl --request PUT \
--url https://api.getmaxim.ai/v1/datasets/entries \
--header 'Content-Type: application/json' \
--header 'x-maxim-api-key: <api-key>' \
--data '
{
"workspaceId": "<string>",
"datasetId": "<string>",
"entries": [
{
"rowNo": 2,
"cells": [
{
"columnId": "<string>",
"value": {
"type": "text",
"payload": "<string>"
}
}
]
}
]
}
'{
"data": [
{
"id": "<string>",
"rowNo": 123,
"createdAt": "<string>",
"cells": [
{
"id": "<string>",
"columnId": "<string>",
"value": {
"type": "<string>",
"payload": "<string>"
},
"createdAt": "<string>",
"deletedAt": "<unknown>",
"updatedAt": "<string>"
}
]
}
]
}API key for authentication
Unique identifier for the workspace
Unique identifier for the dataset
Show child attributes
The row number you want to update
x >= 1Show child attributes
The column in the row you want to update
Dataset entries updated successfully
Show child attributes
Show child attributes
Was this page helpful?