cURL
curl --request POST \ --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": [ [ { "columnId": "<string>", "value": { "type": "text", "payload": "<string>" } } ] ] }'
{ "data": [ { "id": "<string>", "rowNo": 123, "createdAt": "<string>", "cells": [ { "id": "<string>", "columnId": "<string>", "value": { "type": "<string>", "payload": { "text": "<string>", "files": [ { "id": "<string>", "url": "<string>" } ] } }, "createdAt": "<string>", "deletedAt": "<any>", "updatedAt": "<string>" } ] } ] }
Create dataset entries
API key for authentication
Unique identifier for the workspace
Unique identifier for the dataset
Entries to be added to a column in a dataset
1
Show child attributes
Dataset entries created successfully
Was this page helpful?