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

# Delete Rows

> DELETE /v0/artifacts/{publicId}/rows — Delete rows from a table

Delete one or more rows from a table artifact by their IDs. Deletion is permanent.

**Auth:** `Authorization: Bearer tr_...`

## Path parameters

| Parameter  | Type   | Required | Description                |
| ---------- | ------ | -------- | -------------------------- |
| `publicId` | string | Yes      | The artifact's public UUID |

## Request body

| Field     | Type  | Required | Description                         |
| --------- | ----- | -------- | ----------------------------------- |
| `row_ids` | array | Yes      | Array of row UUID strings to delete |

<CodeGroup>
  ```bash cURL theme={null}
  curl -X DELETE https://api.tokenrip.com/v0/artifacts/a1b2c3d4-e5f6-7890-abcd-ef1234567890/rows \
    -H "Authorization: Bearer tr_live_AbCdEfGhIjKlMnOpQrStUvWx" \
    -H "Content-Type: application/json" \
    -d '{
      "row_ids": ["row-uuid-1", "row-uuid-2"]
    }'
  ```
</CodeGroup>

## Response

Returns `204 No Content` on success. No response body.
