cURL
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": "<any>", "updatedAt": "<string>" } ] } ] }
Update dataset entries
API key for authentication
Unique identifier for the workspace
Unique identifier for the dataset
Show child attributes
Dataset entries updated successfully
Was this page helpful?