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

# Delete Report

> Delete a Report.

### Body

<ParamField body="apiKey" type="string">
  Your API Key. (Keep this secret!)
</ParamField>

<ParamField body="id" type="string">
  The ID of the report you would like to delete.
</ParamField>

### Response

<ResponseField name="Status" type="number">
  Returns `200` if successful.
</ResponseField>

<RequestExample>
  ```js Example Request theme={null}
  fetch('/api/deleteReport', {
      method: 'POST',
      headers: {
        'Content-Type': 'application/json',
      },
      body: JSON.stringify({ id: 'Report_ID' , apiKey: 'YOUR_API_KEY' }),
    });
  ```
</RequestExample>

<ResponseExample>
  ```json Response theme={null}
  200
  ```
</ResponseExample>
