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

# Remove Google Drive

> Remove Google Drive delivery configuration

## Overview

Remove your Google Drive delivery configuration and revert to Tornado's managed storage for new uploads.

<Info>
  Existing files already delivered to your Drive folder remain untouched. Only new uploads are affected.
</Info>

## Header Parameters

<ParamField header="x-api-key" type="string" required>
  Your API key for authentication
</ParamField>

## Response

<ResponseField name="message" type="string">
  Success confirmation message
</ResponseField>

## Example

<CodeGroup>
  ```bash cURL theme={null}
  curl -X DELETE "https://api.tornadoapi.io/user/gdrive" \
    -H "x-api-key: sk_your_api_key"
  ```

  ```python Python theme={null}
  import requests

  response = requests.delete(
      "https://api.tornadoapi.io/user/gdrive",
      headers={"x-api-key": "sk_your_api_key"}
  )
  print(response.json())
  ```

  ```json Response theme={null}
  {
    "message": "Google Drive storage configuration removed"
  }
  ```
</CodeGroup>

## Success Response

<ResponseExample>
  ```json 200 OK theme={null}
  {
    "message": "Google Drive storage configuration removed"
  }
  ```
</ResponseExample>

## Error Responses

<ResponseExample>
  ```json 401 Unauthorized theme={null}
  {
    "error": "Invalid API Key"
  }
  ```

  ```json 404 Not Found theme={null}
  {
    "error": "No Google Drive configuration found"
  }
  ```
</ResponseExample>
