POST
/
v1
/
datasets
/
entries
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": "file",
          "payload": "<any>"
        }
      }
    ]
  ]
}'
{
  "data": [
    {
      "id": "<string>",
      "rowNo": 123,
      "createdAt": "<string>",
      "cells": [
        {
          "id": "<string>",
          "columnId": "<string>",
          "value": {
            "type": "<string>",
            "payload": "<string>"
          },
          "createdAt": "<string>",
          "deletedAt": "<any>",
          "updatedAt": "<string>"
        }
      ]
    }
  ]
}

Authorizations

x-maxim-api-key
string
header
required

API key for authentication

Body

application/json

Response

201
application/json
Dataset entries created successfully

The response is of type object.