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

# Delete Record

Remove one or more records from your data feed permanently.

## Path Parameters

<ParamField path="integration-id" type="string" required>
  Your integration identifier. Found in the admin app under integration settings.
</ParamField>

<ParamField path="feed-id" type="string" required>
  The unique identifier for your data feed.
</ParamField>

## Request Body

Send a single record object or an array of record objects for bulk deletion.

<ParamField body="id" type="string" required>
  The source ID of the record to delete.
</ParamField>

## Response

<ResponseField name="correlation-id" type="string" required>
  Unique identifier to track this deletion through the processing pipeline.
</ResponseField>

<RequestExample>
  ```json Single Record theme={"theme":"css-variables"}
  {
    "id": "product-123"
  }
  ```

  ```json Multiple Records theme={"theme":"css-variables"}
  [
    {"id": "product-123"},
    {"id": "product-456"}
  ]
  ```
</RequestExample>

<ResponseExample>
  ```json 200 OK theme={"theme":"css-variables"}
  {
    "correlation-id": "44e0g8f9-4c84-6g30-a3c7-55e429ff189f"
  }
  ```
</ResponseExample>
