> ## Documentation Index
> Fetch the complete documentation index at: https://www.getmaxim.ai/docs/llms.txt
> Use this file to discover all available pages before exploring further.

# Delete Dataset Entries

> Delete dataset entries



## OpenAPI

````yaml /public-apis/openapi/datasets.json delete /v1/datasets/entries
openapi: 3.0.0
info:
  version: 1.0.0
  contact:
    name: Maxim Engineering
    email: eng@getmaxim.ai
  title: Maxim SDK API - datasets
  description: API documentation for Maxim SDK datasets endpoints
servers:
  - url: https://api.getmaxim.ai
security: []
paths:
  /v1/datasets/entries:
    delete:
      tags:
        - Dataset entry
      summary: Delete Dataset Entries
      description: Delete dataset entries
      requestBody:
        content:
          application/json:
            schema:
              type: object
              properties:
                workspaceId:
                  type: string
                  description: Unique identifier for the workspace
                datasetId:
                  type: string
                  description: Unique identifier for the dataset
                splitId:
                  type: string
                  description: Unique identifier for the split
                deleteAll:
                  type: boolean
                  description: Delete all entries from the dataset
                columnIds:
                  type: array
                  items:
                    type: string
                  minItems: 1
                  description: >-
                    Unique identifiers for the columns to delete. All entries
                    from this column will be deleted.
                entries:
                  type: array
                  items:
                    type: object
                    properties:
                      rowNo:
                        type: integer
                        description: The row number you want to delete from the dataset
                      entryId:
                        type: string
                        minLength: 1
                        description: >-
                          The entryId you want to delete from the dataset. This
                          field is required only when a splitId is passed
                      cells:
                        type: array
                        items:
                          type: object
                          properties:
                            columnId:
                              type: string
                              description: >-
                                The columnId of which the entries will be
                                deleted
                          required:
                            - columnId
                        minItems: 1
                    required:
                      - rowNo
                  minItems: 1
                  description: >-
                    Unique identifiers for the entries to delete. All entries
                    from this entry will be deleted.
              required:
                - workspaceId
                - datasetId
      responses:
        '204':
          description: Dataset entries deleted successfully
        '400':
          description: Invalid request parameters
        '404':
          description: Dataset not found
      security:
        - ApiKeyAuth: []
components:
  securitySchemes:
    ApiKeyAuth:
      type: apiKey
      in: header
      name: x-maxim-api-key
      description: API key for authentication

````