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

# Delete Collection Record By ID

> This endpoint allows the deletion of a selected collection record.

#### Description

This API endpoint facilitates the removal of a specific collection record by providing the unique identifiers of both the collection and the record.

#### Path

<ParamField path="collectionId" type="string" required>
  A unique identifier for the collection, allowing for precise referencing.
</ParamField>

<ParamField path="recordId" type="string" required>
  A unique identifier for the collection record to be deleted.
</ParamField>

#### Response

<ResponseField name="status" type="boolean">
  Indicates the success or failure of the collection record deletion. In this case, true signifies a successful operation.
</ResponseField>

<ResponseField name="message" type="string">
  Provides a human-readable message accompanying the response. In this instance, it confirms the successful deletion of the collection record with the message  "Record Deleted Successfully!"
</ResponseField>

<ResponseExample>
  ```json 200-Success theme={null}
  {
      "status": true,
      "message": "Record Deleted Successfully!"
  }
  ```

  ```json 401-Unauthorised theme={null}
  {
    "status": false,
    "message": "No token provided"
  }
  ```
</ResponseExample>
