> ## Documentation Index
> Fetch the complete documentation index at: https://upstash-bulkdlqdelete.mintlify.site/llms.txt
> Use this file to discover all available pages before exploring further.

# Remove

Used to delete vectors with array of IDs

## Arguments

<ResponseField name="IDs" type="string[] | number[]" required>
  The IDs of the vectors you want to delete.
</ResponseField>

## Response

<ResponseField name="delete" type="number" required>
  The number of the deleted vectors.
</ResponseField>

<RequestExample>
  ```typescript Basic
  const responseDelete = await index.delete(["2", "3"]);
  //{ deleted: 2}
  ```
</RequestExample>
