Skip to main content
PUT
/
v1
/
datasets
/
columns
Update Dataset Columns
curl --request PUT \
  --url https://api.getmaxim.ai/v1/datasets/columns \
  --header 'Content-Type: application/json' \
  --header 'x-maxim-api-key: <api-key>' \
  --data '{
  "workspaceId": "<string>",
  "datasetId": "<string>",
  "columnData": [
    {
      "columnId": "<string>",
      "name": "<string>"
    }
  ]
}'
{}

Authorizations

x-maxim-api-key
string
header
required

API key for authentication

Body

application/json
workspaceId
string
required

Unique identifier for the workspace

datasetId
string
required

Unique identifier for the dataset to to fetch the columns of

columnData
object[]
required
Minimum length: 1

Response

Dataset columns updated successfully

The response is of type object.

I