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

# Delete a Single Row

> Deletes the row from the dataset. Returns an empty response on success.

### Path Parameters

<ParamField path="id" required>
  Dataset ID
</ParamField>

<ParamField path="row-id" required>
  Row ID. Can be found the metadata.
</ParamField>

### Header

<ParamField header="Authorization" required>
  Baseplate API key. Must be in the format "Bearer \$BASEPLATE\_API\_KEY"
</ParamField>

<ParamField header="Content-Type">
  Use application/json
</ParamField>

### Responses

<Tabs>
  <Tab title="🟢 200: OK">
    ```json theme={null}
    {}
    ```
  </Tab>

  <Tab title="🟠 401: Unauthorized">
    ```json theme={null}
    {
      // Response
    }
    ```
  </Tab>
</Tabs>
