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>"
}
]
}
]
}
'Delete dataset 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>"
}
]
}
]
}
'API key for authentication
Unique identifier for the workspace
Unique identifier for the dataset
Unique identifier for the split
Delete all entries from the dataset
Unique identifiers for the columns to delete. All entries from this column will be deleted.
1Unique identifiers for the entries to delete. All entries from this entry will be deleted.
1Show child attributes
Dataset entries deleted successfully
Was this page helpful?