DELETE
/
v1
/
datasets
/
entries
curl --request DELETE \
  --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>",
  "splitId": "<string>",
  "deleteAll": true,
  "columnIds": [
    "<string>"
  ],
  "entries": [
    {
      "rowNo": 123,
      "entryId": "<string>",
      "cells": [
        {
          "columnId": "<string>"
        }
      ]
    }
  ]
}'

Authorizations

x-maxim-api-key
string
header
required

API key for authentication

Body

application/json

Response

204

Dataset entries deleted successfully