Maxim Logo
Datasets

Update Dataset

Update a dataset

PUT
/v1/datasets

Authorization

x-maxim-api-key<token>

API key for authentication

In: header

Request Body

application/jsonOptional
idRequiredstring

Unique identifier for the alert

Minimum length: 1
workspaceIdRequiredstring

Unique identifier for the workspace

Minimum length: 1
nameRequiredstring

Name of the dataset

Minimum length: 1
curl -X PUT "https://api.getmaxim.ai/v1/datasets" \
  -H "x-maxim-api-key: <token>" \
  -H "Content-Type: application/json" \
  -d '{
    "id": "string",
    "workspaceId": "string",
    "name": "string"
  }'

Dataset updated successfully

{}