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

# Delete Index

> Delete an index record and associated assets.

Delete an index record and associated assets.

**Required fields**: `indexName`

**Example request**

```bash theme={null}
curl -X POST "https://service.usemoss.dev/v1/manage" \
  -H "Content-Type: application/json" \
  -H "x-service-version: v1" \
  -H "x-project-key: moss_access_key_xxxxx" \
  -d '{
    "action": "deleteIndex",
    "projectId": "project_123",
    "indexName": "support-faq"
  }'
```

**Responses**

<CodeGroup>
  ```json 200 - OK theme={null}
  true
  ```
</CodeGroup>

**Errors**

* `404` if the index is missing.
