Skip to main content
PUT
/
v1
/
datasets
/
splits
Update Dataset Split
curl --request PUT \
  --url https://api.getmaxim.ai/v1/datasets/splits \
  --header 'Content-Type: application/json' \
  --header 'x-maxim-api-key: <api-key>' \
  --data '{
  "id": "<string>",
  "datasetId": "<string>",
  "name": "<string>",
  "description": "<string>"
}'
{
  "data": [
    {
      "id": "<string>",
      "name": "<string>",
      "type": "<string>",
      "meta": {
        "columnDataType": "<string>",
        "delimiter": "<string>"
      },
      "columnType": "<string>"
    }
  ]
}

Authorizations

x-maxim-api-key
string
header
required

API key for authentication

Body

application/json
id
string
required

Unique identifier for the dataset split to update

datasetId
string
required

Unique identifier for the dataset

name
string

Name of the dataset split

Required string length: 1 - 255
description
string

Description of the dataset split

Maximum length: 255

Response

Dataset split updated successfully

data
object[]
required
I